diff --git "a/notebooks/00f_Data Analysis_Fine_Tuned_RPP_Generic_Prompt.ipynb" "b/notebooks/00f_Data Analysis_Fine_Tuned_RPP_Generic_Prompt.ipynb" --- "a/notebooks/00f_Data Analysis_Fine_Tuned_RPP_Generic_Prompt.ipynb" +++ "b/notebooks/00f_Data Analysis_Fine_Tuned_RPP_Generic_Prompt.ipynb" @@ -1,9559 +1,3 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "executionInfo": { - "elapsed": 476, - "status": "ok", - "timestamp": 1720679526275, - "user": { - "displayName": "HUANG DONGHAO _", - "userId": "00977795705617022768" - }, - "user_tz": -480 - }, - "id": "uWKRSV6eZsCn" - }, - "outputs": [], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "6d394937-6c99-4a7c-9d32-7600a280032f", - "showTitle": false, - "title": "" - }, - "colab": { - "base_uri": "https://localhost:8080/" - }, - "executionInfo": { - "elapsed": 5, - "status": "ok", - "timestamp": 1720679529345, - "user": { - "displayName": "HUANG DONGHAO _", - "userId": "00977795705617022768" - }, - "user_tz": -480 - }, - "id": "G5pNu3zgZBrL", - "outputId": "160a554f-fb08-4aa0-bc00-0422fb7c1fac" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "workding dir: /Users/inflaton/code/engd/papers/rapget-translation\n" - ] - } - ], - "source": [ - "import os\n", - "import sys\n", - "from pathlib import Path\n", - "\n", - "# check if workding_dir is in local variables\n", - "if \"workding_dir\" not in locals():\n", - " workding_dir = str(Path.cwd().parent)\n", - "\n", - "os.chdir(workding_dir)\n", - "sys.path.append(workding_dir)\n", - "print(\"workding dir:\", workding_dir)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "9f67ec60-2f24-411c-84eb-0dd664b44775", - "showTitle": false, - "title": "" - }, - "colab": { - "base_uri": "https://localhost:8080/" - }, - "executionInfo": { - "elapsed": 3, - "status": "ok", - "timestamp": 1720679529345, - "user": { - "displayName": "HUANG DONGHAO _", - "userId": "00977795705617022768" - }, - "user_tz": -480 - }, - "id": "hPCC-6m7ZBrM", - "outputId": "c7aa2c96-5e99-440a-c148-201d79465ff9" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "loading env vars from: /Users/inflaton/code/engd/papers/rapget-translation/.env\n" - ] - }, - { - "data": { - "text/plain": [ - "True" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from dotenv import find_dotenv, load_dotenv\n", - "\n", - "found_dotenv = find_dotenv(\".env\")\n", - "\n", - "if len(found_dotenv) == 0:\n", - " found_dotenv = find_dotenv(\".env.example\")\n", - "print(f\"loading env vars from: {found_dotenv}\")\n", - "load_dotenv(found_dotenv, override=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "f1597656-8042-4878-9d3b-9ebfb8dd86dc", - "showTitle": false, - "title": "" - }, - "colab": { - "base_uri": "https://localhost:8080/" - }, - "executionInfo": { - "elapsed": 3, - "status": "ok", - "timestamp": 1720679529345, - "user": { - "displayName": "HUANG DONGHAO _", - "userId": "00977795705617022768" - }, - "user_tz": -480 - }, - "id": "1M3IraVtZBrM", - "outputId": "29ab35f6-2970-4ade-d85d-3174acf8cda0" - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "microsoft/Phi-3.5-mini-instruct None False datasets/mac/mac.tsv results/mac-results_rpp_with_mnt_2048_generic_prompt.csv False 2048\n" - ] - } - ], - "source": [ - "import os\n", - "\n", - "model_name = os.getenv(\"MODEL_NAME\")\n", - "adapter_name_or_path = os.getenv(\"ADAPTER_NAME_OR_PATH\")\n", - "load_in_4bit = os.getenv(\"LOAD_IN_4BIT\") == \"true\"\n", - "data_path = os.getenv(\"DATA_PATH\")\n", - "results_path = \"results/mac-results_rpp_with_mnt_2048_generic_prompt.csv\"\n", - "use_english_datasets = os.getenv(\"USE_ENGLISH_DATASETS\") == \"true\"\n", - "max_new_tokens = int(os.getenv(\"MAX_NEW_TOKENS\", 2048))\n", - "\n", - "print(\n", - " model_name,\n", - " adapter_name_or_path,\n", - " load_in_4bit,\n", - " data_path,\n", - " results_path,\n", - " use_english_datasets,\n", - " max_new_tokens,\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "[nltk_data] Downloading package wordnet to\n", - "[nltk_data] /Users/inflaton/nltk_data...\n", - "[nltk_data] Package wordnet is already up-to-date!\n", - "[nltk_data] Downloading package punkt to /Users/inflaton/nltk_data...\n", - "[nltk_data] Package punkt is already up-to-date!\n", - "[nltk_data] Downloading package omw-1.4 to\n", - "[nltk_data] /Users/inflaton/nltk_data...\n", - "[nltk_data] Package omw-1.4 is already up-to-date!\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "loading: /Users/inflaton/code/engd/papers/rapget-translation/eval_modules/calc_repetitions.py\n", - "loading /Users/inflaton/code/engd/papers/rapget-translation/llm_toolkit/translation_utils.py\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "[nltk_data] Downloading package wordnet to\n", - "[nltk_data] /Users/inflaton/nltk_data...\n", - "[nltk_data] Package wordnet is already up-to-date!\n", - "[nltk_data] Downloading package punkt to /Users/inflaton/nltk_data...\n", - "[nltk_data] Package punkt is already up-to-date!\n", - "[nltk_data] Downloading package omw-1.4 to\n", - "[nltk_data] /Users/inflaton/nltk_data...\n", - "[nltk_data] Package omw-1.4 is already up-to-date!\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "61ca09ed2fd345e9bc8daa4e6e67b9ce", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "Fetching 5 files: 0%| | 0/5 [00:00\n", - "RangeIndex: 1133 entries, 0 to 1132\n", - "Data columns (total 24 columns):\n", - " # Column Non-Null Count Dtype \n", - "--- ------ -------------- ----- \n", - " 0 chinese 1133 non-null object\n", - " 1 english 1133 non-null object\n", - " 2 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00 1130 non-null object\n", - " 3 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02 1131 non-null object\n", - " 4 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04 1130 non-null object\n", - " 5 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06 1131 non-null object\n", - " 6 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08 1130 non-null object\n", - " 7 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10 1131 non-null object\n", - " 8 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00 1133 non-null object\n", - " 9 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02 1133 non-null object\n", - " 10 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04 1133 non-null object\n", - " 11 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06 1133 non-null object\n", - " 12 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08 1133 non-null object\n", - " 13 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10 1133 non-null object\n", - " 14 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00 1133 non-null object\n", - " 15 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02 1133 non-null object\n", - " 16 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04 1133 non-null object\n", - " 17 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06 1133 non-null object\n", - " 18 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.08 1133 non-null object\n", - " 19 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.10 1133 non-null object\n", - " 20 Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00 1133 non-null object\n", - " 21 shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00 1133 non-null object\n", - " 22 Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02 1133 non-null object\n", - " 23 shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02 1133 non-null object\n", - "dtypes: object(24)\n", - "memory usage: 212.6+ KB\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/inflaton/anaconda3/envs/rapget/lib/python3.11/site-packages/pytorch_lightning/core/saving.py:195: Found keys that are not in the model state dict but in the checkpoint: ['encoder.model.embeddings.position_ids']\n" - ] - } - ], - "source": [ - "import pandas as pd\n", - "from llm_toolkit.llm_utils import *\n", - "from llm_toolkit.translation_utils import *\n", - "\n", - "df = pd.read_csv(results_path)\n", - "df.info()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00',\n", - " 'Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.08',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.10',\n", - " 'shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00',\n", - " 'shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10']" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "result_columns = [col for col in df.columns[2:].to_list() if \"rpp\" in col]\n", - "result_columns.sort()\n", - "result_columns" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(['Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00',\n", - " 'Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.08',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.10',\n", - " 'shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00',\n", - " 'shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10'],\n", - " ['chinese',\n", - " 'english',\n", - " 'Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00',\n", - " 'Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08',\n", - " 'internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.08',\n", - " 'microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.10',\n", - " 'shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00',\n", - " 'shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10'])" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "columns = df.columns[:2].to_list() + result_columns\n", - "df = df[columns]\n", - "columns = df.columns.to_list()\n", - "result_columns = df.columns[2:].to_list()\n", - "result_columns, columns" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RangeIndex: 1133 entries, 0 to 1132\n", - "Data columns (total 24 columns):\n", - " # Column Non-Null Count Dtype \n", - "--- ------ -------------- ----- \n", - " 0 chinese 1133 non-null object\n", - " 1 english 1133 non-null object\n", - " 2 Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00 1133 non-null object\n", - " 3 Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02 1133 non-null object\n", - " 4 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00 1130 non-null object\n", - " 5 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02 1131 non-null object\n", - " 6 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04 1130 non-null object\n", - " 7 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06 1131 non-null object\n", - " 8 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08 1130 non-null object\n", - " 9 internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10 1131 non-null object\n", - " 10 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00 1133 non-null object\n", - " 11 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02 1133 non-null object\n", - " 12 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04 1133 non-null object\n", - " 13 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06 1133 non-null object\n", - " 14 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.08 1133 non-null object\n", - " 15 microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.10 1133 non-null object\n", - " 16 shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00 1133 non-null object\n", - " 17 shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02 1133 non-null object\n", - " 18 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00 1133 non-null object\n", - " 19 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02 1133 non-null object\n", - " 20 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04 1133 non-null object\n", - " 21 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06 1133 non-null object\n", - " 22 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08 1133 non-null object\n", - " 23 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10 1133 non-null object\n", - "dtypes: object(24)\n", - "memory usage: 212.6+ KB\n" - ] - } - ], - "source": [ - "df.info()" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RangeIndex: 21 entries, 0 to 20\n", - "Data columns (total 13 columns):\n", - " # Column Non-Null Count Dtype \n", - "--- ------ -------------- ----- \n", - " 0 model 21 non-null object \n", - " 1 rpp 21 non-null float64\n", - " 2 comet 21 non-null float64\n", - " 3 meteor 21 non-null float64\n", - " 4 spbleu 21 non-null float64\n", - " 5 bleu_1 21 non-null float64\n", - " 6 rouge_l 21 non-null float64\n", - " 7 ews_score 21 non-null float64\n", - " 8 repetition_score 21 non-null float64\n", - " 9 total_repetitions 21 non-null float64\n", - " 10 rap 21 non-null float64\n", - " 11 translation_completeness 21 non-null float64\n", - " 12 num_max_output_tokens 21 non-null int64 \n", - "dtypes: float64(11), int64(1), object(1)\n", - "memory usage: 2.3+ KB\n" - ] - } - ], - "source": [ - "metrics_path = results_path.replace(\".csv\", \"_metrics.csv\")\n", - "metrics_df = pd.read_csv(metrics_path) if os.path.exists(metrics_path) else None\n", - "metrics_df.info() if metrics_df is not None else None" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['Qwen/Qwen2-72B-Instruct', 'internlm/internlm2_5-7b-chat', 'microsoft/Phi-3.5-mini-instruct', 'shenzhi-wang/Llama3.1-70B-Chinese-Chat', 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat']\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.\n", - "Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.\n", - "Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.\n", - "You set `add_prefix_space`. The tokenizer needs to be converted from the slow tokenizers\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Using existing metrics for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: {'model': 'Qwen/Qwen2-72B-Instruct', 'rpp': 1.0, 'comet': 0.7457879471336964, 'meteor': 0.4655033970145371, 'spbleu': 11.09789843749336, 'bleu_1': 0.1109789843749336, 'rouge_l': 0.4309698494389731, 'ews_score': 0.0, 'repetition_score': 48.81906443071492, 'total_repetitions': 48.81906443071492, 'rap': 0.4214638674295989, 'translation_completeness': 0.9902912621359224, 'num_max_output_tokens': 10}\n", - "Using existing metrics for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: {'model': 'Qwen/Qwen2-72B-Instruct', 'rpp': 1.02, 'comet': 0.7498899340261324, 'meteor': 0.4659242900672017, 'spbleu': 15.078064414763237, 'bleu_1': 0.1507806441476323, 'rouge_l': 0.4325706376223884, 'ews_score': 0.0, 'repetition_score': 18.3909973521624, 'total_repetitions': 18.3909973521624, 'rap': 0.5160335257972241, 'translation_completeness': 0.994704324801412, 'num_max_output_tokens': 3}\n", - "Using existing metrics for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00: {'model': 'internlm/internlm2_5-7b-chat', 'rpp': 1.0, 'comet': 0.7357995069773978, 'meteor': 0.4297612514398102, 'spbleu': 15.060226683930628, 'bleu_1': 0.1506022668393063, 'rouge_l': 0.4097577795330234, 'ews_score': 0.0, 'repetition_score': 11.742277140335393, 'total_repetitions': 11.742277140335393, 'rap': 0.5502106789386991, 'translation_completeness': 1.0, 'num_max_output_tokens': 2}\n", - "Using existing metrics for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02: {'model': 'internlm/internlm2_5-7b-chat', 'rpp': 1.02, 'comet': 0.7377187550620283, 'meteor': 0.4246676977198055, 'spbleu': 14.728605282752795, 'bleu_1': 0.147286052827528, 'rouge_l': 0.4063246630867048, 'ews_score': 0.0, 'repetition_score': 5.420123565754634, 'total_repetitions': 5.420123565754634, 'rap': 0.6209294646606592, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04: {'model': 'internlm/internlm2_5-7b-chat', 'rpp': 1.04, 'comet': 0.7371160490183523, 'meteor': 0.4173352728374962, 'spbleu': 13.846403511622256, 'bleu_1': 0.1384640351162226, 'rouge_l': 0.3988121301027288, 'ews_score': 0.0, 'repetition_score': 5.3097969991173875, 'total_repetitions': 5.3097969991173875, 'rap': 0.6220549062227617, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06: {'model': 'internlm/internlm2_5-7b-chat', 'rpp': 1.06, 'comet': 0.7338597697698218, 'meteor': 0.3997609847704189, 'spbleu': 12.213374588416173, 'bleu_1': 0.1221337458841617, 'rouge_l': 0.3841365748920261, 'ews_score': 0.0, 'repetition_score': 5.316857899382171, 'total_repetitions': 5.316857899382171, 'rap': 0.6192022797578944, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08: {'model': 'internlm/internlm2_5-7b-chat', 'rpp': 1.08, 'comet': 0.7318234702626478, 'meteor': 0.3881614120395272, 'spbleu': 11.369735763522288, 'bleu_1': 0.1136973576352228, 'rouge_l': 0.372963223209074, 'ews_score': 0.0, 'repetition_score': 5.340688437775817, 'total_repetitions': 5.340688437775817, 'rap': 0.6171325620248217, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10: {'model': 'internlm/internlm2_5-7b-chat', 'rpp': 1.1, 'comet': 0.7288648442604431, 'meteor': 0.3784182249483568, 'spbleu': 10.377989030628608, 'bleu_1': 0.103779890306286, 'rouge_l': 0.3618424457502351, 'ews_score': 0.0, 'repetition_score': 5.316857899382171, 'total_repetitions': 5.316857899382171, 'rap': 0.6149877562344177, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00\n", - "microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00: {'model': 'microsoft/Phi-3.5-mini-instruct', 'rpp': 1.0, 'comet': 0.710605339281136, 'meteor': 0.3788926591792472, 'spbleu': 9.70032874202361, 'bleu_1': 0.097003287420236, 'rouge_l': 0.3556134739443916, 'ews_score': 1.7987643424536628, 'repetition_score': 16.421006178287733, 'total_repetitions': 18.219770520741395, 'rap': 0.4898856540979652, 'translation_completeness': 1.0, 'num_max_output_tokens': 4}\n", - "Using existing metrics for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02\n", - "microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02: {'model': 'microsoft/Phi-3.5-mini-instruct', 'rpp': 1.02, 'comet': 0.7150978385770836, 'meteor': 0.3741049510326346, 'spbleu': 9.910633597905436, 'bleu_1': 0.0991063359790543, 'rouge_l': 0.3453160556383774, 'ews_score': 0.0, 'repetition_score': 10.690203000882612, 'total_repetitions': 10.690203000882612, 'rap': 0.543484568672847, 'translation_completeness': 1.0, 'num_max_output_tokens': 2}\n", - "Using existing metrics for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04\n", - "microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04: {'model': 'microsoft/Phi-3.5-mini-instruct', 'rpp': 1.04, 'comet': 0.7074641684778791, 'meteor': 0.3538698731015666, 'spbleu': 9.19721270538052, 'bleu_1': 0.0919721270538052, 'rouge_l': 0.3225824135517728, 'ews_score': 0.0, 'repetition_score': 0.1094439541041482, 'total_repetitions': 0.1094439541041482, 'rap': 0.7041355304734901, 'translation_completeness': 1.0, 'num_max_output_tokens': 0}\n", - "Using existing metrics for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06\n", - "microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06: {'model': 'microsoft/Phi-3.5-mini-instruct', 'rpp': 1.06, 'comet': 0.6962301708225224, 'meteor': 0.3252854575717334, 'spbleu': 6.967166383106307, 'bleu_1': 0.069671663831063, 'rouge_l': 0.2948764736589108, 'ews_score': 0.0, 'repetition_score': 0.0935569285083848, 'total_repetitions': 0.0935569285083848, 'rap': 0.6934257926979845, 'translation_completeness': 1.0, 'num_max_output_tokens': 0}\n", - "Using existing metrics for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.08\n", - "microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.08: {'model': 'microsoft/Phi-3.5-mini-instruct', 'rpp': 1.08, 'comet': 0.6823413657174107, 'meteor': 0.301599095293242, 'spbleu': 5.452744292893752, 'bleu_1': 0.0545274429289375, 'rouge_l': 0.2726387617958179, 'ews_score': 0.0, 'repetition_score': 0.0264783759929391, 'total_repetitions': 0.0264783759929391, 'rap': 0.6815586491033614, 'translation_completeness': 1.0, 'num_max_output_tokens': 0}\n", - "Using existing metrics for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.10\n", - "microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.10: {'model': 'microsoft/Phi-3.5-mini-instruct', 'rpp': 1.1, 'comet': 0.6717851540206916, 'meteor': 0.2885734336603344, 'spbleu': 4.751039447225815, 'bleu_1': 0.0475103944722581, 'rouge_l': 0.2604284999048123, 'ews_score': 0.0, 'repetition_score': 0.0458958517210944, 'total_repetitions': 0.0458958517210944, 'rap': 0.670451845604288, 'translation_completeness': 1.0, 'num_max_output_tokens': 0}\n", - "Using existing metrics for shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: {'model': 'shenzhi-wang/Llama3.1-70B-Chinese-Chat', 'rpp': 1.0, 'comet': 0.739080294072365, 'meteor': 0.4490104515425626, 'spbleu': 6.7013404492782405, 'bleu_1': 0.0670134044927823, 'rouge_l': 0.4196181637680596, 'ews_score': 0.0, 'repetition_score': 144.23654015887027, 'total_repetitions': 144.23654015887027, 'rap': 0.3377591592213682, 'translation_completeness': 0.999117387466902, 'num_max_output_tokens': 15}\n", - "Calculating metrics for shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True (mps), used: False\n", - "TPU available: False, using: 0 TPU cores\n", - "HPU available: False, using: 0 HPUs\n", - "/Users/inflaton/anaconda3/envs/rapget/lib/python3.11/site-packages/pytorch_lightning/trainer/setup.py:177: GPU available but not used. You can set it by doing `Trainer(accelerator='gpu')`.\n", - "Using default tokenizer.\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: {'comet': 0.743018615750854, 'meteor': 0.45149071289722514, 'sacrebleu': {'score': 8.545954556237808, 'counts': [14518, 6359, 3380, 1944], 'totals': [59784, 58651, 57518, 56390], 'precisions': [24.28408938846514, 10.842099878944946, 5.876421294203554, 3.447419755275758], 'bp': 1.0, 'sys_len': 59784, 'ref_len': 30190}, 'bleu_scores': {'bleu': 0.08545954556237809, 'precisions': [0.2428408938846514, 0.10842099878944945, 0.058764212942035536, 0.03447419755275758], 'brevity_penalty': 1.0, 'length_ratio': 1.9802583636965883, 'translation_length': 59784, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.47807496871322297, 'rouge2': 0.24039864949841633, 'rougeL': 0.42149404152880876, 'rougeLsum': 0.4218889160980004}, 'accuracy': 0.0, 'correct_ids': []}\n", - "Using existing metrics for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00\n", - "shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00: {'model': 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat', 'rpp': 1.0, 'comet': 0.7222260562908512, 'meteor': 0.4039898602650971, 'spbleu': 13.461179673541356, 'bleu_1': 0.1346117967354136, 'rouge_l': 0.3819960428004565, 'ews_score': 0.0, 'repetition_score': 5.837599293909974, 'total_repetitions': 5.837599293909974, 'rap': 0.6020108921217914, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02\n", - "shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02: {'model': 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat', 'rpp': 1.02, 'comet': 0.723643534970515, 'meteor': 0.4051102919608809, 'spbleu': 13.18537912294539, 'bleu_1': 0.1318537912294539, 'rouge_l': 0.3824621732976229, 'ews_score': 0.0, 'repetition_score': 5.7855251544571935, 'total_repetitions': 5.7855251544571935, 'rap': 0.6039124380139065, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04\n", - "shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04: {'model': 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat', 'rpp': 1.04, 'comet': 0.7238812581796301, 'meteor': 0.4039456988919502, 'spbleu': 13.314773371306682, 'bleu_1': 0.1331477337130668, 'rouge_l': 0.3813737464821349, 'ews_score': 0.0, 'repetition_score': 5.804060017652251, 'total_repetitions': 5.804060017652251, 'rap': 0.6038540012915103, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06\n", - "shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06: {'model': 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat', 'rpp': 1.06, 'comet': 0.7252625281686607, 'meteor': 0.4012797167602334, 'spbleu': 13.19924345265053, 'bleu_1': 0.1319924345265053, 'rouge_l': 0.3798291332004637, 'ews_score': 0.0, 'repetition_score': 5.795233892321271, 'total_repetitions': 5.795233892321271, 'rap': 0.6051287090305499, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08\n", - "shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08: {'model': 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat', 'rpp': 1.08, 'comet': 0.7261167238322592, 'meteor': 0.3987395126194482, 'spbleu': 12.656486100206328, 'bleu_1': 0.1265648610020633, 'rouge_l': 0.376975448872996, 'ews_score': 0.0, 'repetition_score': 5.804060017652251, 'total_repetitions': 5.804060017652251, 'rap': 0.6057188028233036, 'translation_completeness': 1.0, 'num_max_output_tokens': 1}\n", - "Using existing metrics for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10\n", - "shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10: {'model': 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat', 'rpp': 1.1, 'comet': 0.7264630642225547, 'meteor': 0.3964859769229444, 'spbleu': 12.284961706379857, 'bleu_1': 0.1228496170637985, 'rouge_l': 0.3744555065346823, 'ews_score': 0.0, 'repetition_score': 0.1632833186231244, 'total_repetitions': 0.1632833186231244, 'rap': 0.7213887920596253, 'translation_completeness': 1.0, 'num_max_output_tokens': 0}\n", - "CPU times: user 24min 11s, sys: 14min 37s, total: 38min 48s\n", - "Wall time: 5min 26s\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
modelrppcometmeteorspbleubleu_1rouge_lews_scorerepetition_scoretotal_repetitionsraptranslation_completenessnum_max_output_tokens
0Qwen/Qwen2-72B-Instruct1.000.7457880.46550311.0978980.1109790.4309700.00000048.81906448.8190640.4214640.99029110
1Qwen/Qwen2-72B-Instruct1.020.7498900.46592415.0780640.1507810.4325710.00000018.39099718.3909970.5160340.9947043
2internlm/internlm2_5-7b-chat1.000.7358000.42976115.0602270.1506020.4097580.00000011.74227711.7422770.5502111.0000002
3internlm/internlm2_5-7b-chat1.020.7377190.42466814.7286050.1472860.4063250.0000005.4201245.4201240.6209291.0000001
4internlm/internlm2_5-7b-chat1.040.7371160.41733513.8464040.1384640.3988120.0000005.3097975.3097970.6220551.0000001
5internlm/internlm2_5-7b-chat1.060.7338600.39976112.2133750.1221340.3841370.0000005.3168585.3168580.6192021.0000001
6internlm/internlm2_5-7b-chat1.080.7318230.38816111.3697360.1136970.3729630.0000005.3406885.3406880.6171331.0000001
7internlm/internlm2_5-7b-chat1.100.7288650.37841810.3779890.1037800.3618420.0000005.3168585.3168580.6149881.0000001
8microsoft/Phi-3.5-mini-instruct1.000.7106050.3788939.7003290.0970030.3556131.79876416.42100618.2197710.4898861.0000004
9microsoft/Phi-3.5-mini-instruct1.020.7150980.3741059.9106340.0991060.3453160.00000010.69020310.6902030.5434851.0000002
10microsoft/Phi-3.5-mini-instruct1.040.7074640.3538709.1972130.0919720.3225820.0000000.1094440.1094440.7041361.0000000
11microsoft/Phi-3.5-mini-instruct1.060.6962300.3252856.9671660.0696720.2948760.0000000.0935570.0935570.6934261.0000000
12microsoft/Phi-3.5-mini-instruct1.080.6823410.3015995.4527440.0545270.2726390.0000000.0264780.0264780.6815591.0000000
13microsoft/Phi-3.5-mini-instruct1.100.6717850.2885734.7510390.0475100.2604280.0000000.0458960.0458960.6704521.0000000
14shenzhi-wang/Llama3.1-70B-Chinese-Chat1.000.7390800.4490106.7013400.0670130.4196180.000000144.236540144.2365400.3377590.99911715
15shenzhi-wang/Llama3.1-70B-Chinese-Chat1.020.7430190.4514918.5459550.0854600.4214940.00000070.76875670.7687560.3895771.0000006
16shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat1.000.7222260.40399013.4611800.1346120.3819960.0000005.8375995.8375990.6020111.0000001
17shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat1.020.7236440.40511013.1853790.1318540.3824620.0000005.7855255.7855250.6039121.0000001
18shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat1.040.7238810.40394613.3147730.1331480.3813740.0000005.8040605.8040600.6038541.0000001
19shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat1.060.7252630.40128013.1992430.1319920.3798290.0000005.7952345.7952340.6051291.0000001
20shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat1.080.7261170.39874012.6564860.1265650.3769750.0000005.8040605.8040600.6057191.0000001
21shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat1.100.7264630.39648612.2849620.1228500.3744560.0000000.1632830.1632830.7213891.0000000
\n", - "
" - ], - "text/plain": [ - " model rpp comet meteor \\\n", - "0 Qwen/Qwen2-72B-Instruct 1.00 0.745788 0.465503 \n", - "1 Qwen/Qwen2-72B-Instruct 1.02 0.749890 0.465924 \n", - "2 internlm/internlm2_5-7b-chat 1.00 0.735800 0.429761 \n", - "3 internlm/internlm2_5-7b-chat 1.02 0.737719 0.424668 \n", - "4 internlm/internlm2_5-7b-chat 1.04 0.737116 0.417335 \n", - "5 internlm/internlm2_5-7b-chat 1.06 0.733860 0.399761 \n", - "6 internlm/internlm2_5-7b-chat 1.08 0.731823 0.388161 \n", - "7 internlm/internlm2_5-7b-chat 1.10 0.728865 0.378418 \n", - "8 microsoft/Phi-3.5-mini-instruct 1.00 0.710605 0.378893 \n", - "9 microsoft/Phi-3.5-mini-instruct 1.02 0.715098 0.374105 \n", - "10 microsoft/Phi-3.5-mini-instruct 1.04 0.707464 0.353870 \n", - "11 microsoft/Phi-3.5-mini-instruct 1.06 0.696230 0.325285 \n", - "12 microsoft/Phi-3.5-mini-instruct 1.08 0.682341 0.301599 \n", - "13 microsoft/Phi-3.5-mini-instruct 1.10 0.671785 0.288573 \n", - "14 shenzhi-wang/Llama3.1-70B-Chinese-Chat 1.00 0.739080 0.449010 \n", - "15 shenzhi-wang/Llama3.1-70B-Chinese-Chat 1.02 0.743019 0.451491 \n", - "16 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat 1.00 0.722226 0.403990 \n", - "17 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat 1.02 0.723644 0.405110 \n", - "18 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat 1.04 0.723881 0.403946 \n", - "19 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat 1.06 0.725263 0.401280 \n", - "20 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat 1.08 0.726117 0.398740 \n", - "21 shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat 1.10 0.726463 0.396486 \n", - "\n", - " spbleu bleu_1 rouge_l ews_score repetition_score \\\n", - "0 11.097898 0.110979 0.430970 0.000000 48.819064 \n", - "1 15.078064 0.150781 0.432571 0.000000 18.390997 \n", - "2 15.060227 0.150602 0.409758 0.000000 11.742277 \n", - "3 14.728605 0.147286 0.406325 0.000000 5.420124 \n", - "4 13.846404 0.138464 0.398812 0.000000 5.309797 \n", - "5 12.213375 0.122134 0.384137 0.000000 5.316858 \n", - "6 11.369736 0.113697 0.372963 0.000000 5.340688 \n", - "7 10.377989 0.103780 0.361842 0.000000 5.316858 \n", - "8 9.700329 0.097003 0.355613 1.798764 16.421006 \n", - "9 9.910634 0.099106 0.345316 0.000000 10.690203 \n", - "10 9.197213 0.091972 0.322582 0.000000 0.109444 \n", - "11 6.967166 0.069672 0.294876 0.000000 0.093557 \n", - "12 5.452744 0.054527 0.272639 0.000000 0.026478 \n", - "13 4.751039 0.047510 0.260428 0.000000 0.045896 \n", - "14 6.701340 0.067013 0.419618 0.000000 144.236540 \n", - "15 8.545955 0.085460 0.421494 0.000000 70.768756 \n", - "16 13.461180 0.134612 0.381996 0.000000 5.837599 \n", - "17 13.185379 0.131854 0.382462 0.000000 5.785525 \n", - "18 13.314773 0.133148 0.381374 0.000000 5.804060 \n", - "19 13.199243 0.131992 0.379829 0.000000 5.795234 \n", - "20 12.656486 0.126565 0.376975 0.000000 5.804060 \n", - "21 12.284962 0.122850 0.374456 0.000000 0.163283 \n", - "\n", - " total_repetitions rap translation_completeness \\\n", - "0 48.819064 0.421464 0.990291 \n", - "1 18.390997 0.516034 0.994704 \n", - "2 11.742277 0.550211 1.000000 \n", - "3 5.420124 0.620929 1.000000 \n", - "4 5.309797 0.622055 1.000000 \n", - "5 5.316858 0.619202 1.000000 \n", - "6 5.340688 0.617133 1.000000 \n", - "7 5.316858 0.614988 1.000000 \n", - "8 18.219771 0.489886 1.000000 \n", - "9 10.690203 0.543485 1.000000 \n", - "10 0.109444 0.704136 1.000000 \n", - "11 0.093557 0.693426 1.000000 \n", - "12 0.026478 0.681559 1.000000 \n", - "13 0.045896 0.670452 1.000000 \n", - "14 144.236540 0.337759 0.999117 \n", - "15 70.768756 0.389577 1.000000 \n", - "16 5.837599 0.602011 1.000000 \n", - "17 5.785525 0.603912 1.000000 \n", - "18 5.804060 0.603854 1.000000 \n", - "19 5.795234 0.605129 1.000000 \n", - "20 5.804060 0.605719 1.000000 \n", - "21 0.163283 0.721389 1.000000 \n", - "\n", - " num_max_output_tokens \n", - "0 10 \n", - "1 3 \n", - "2 2 \n", - "3 1 \n", - "4 1 \n", - "5 1 \n", - "6 1 \n", - "7 1 \n", - "8 4 \n", - "9 2 \n", - "10 0 \n", - "11 0 \n", - "12 0 \n", - "13 0 \n", - "14 15 \n", - "15 6 \n", - "16 1 \n", - "17 1 \n", - "18 1 \n", - "19 1 \n", - "20 1 \n", - "21 0 " - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "%%time\n", - "\n", - "variant = \"rpp\"\n", - "metrics_df = get_metrics(\n", - " df,\n", - " max_output_tokens=max_new_tokens,\n", - " variant=variant,\n", - " existing_metrics_df=metrics_df,\n", - ")\n", - "metrics_df" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
cometmeteorspbleubleu_1rouge_lews_scorerepetition_scoretotal_repetitionsraptranslation_completenessnum_max_output_tokens
count22.00000022.00000022.00000022.00000022.00000022.00000022.00000022.00000022.00000022.00000022.000000
mean0.7233670.39554111.0500340.1105000.3712290.08176217.14719617.2289580.5833780.9992782.363636
std0.0197450.0471333.0799360.0307990.0475620.38349833.02116933.0215120.1003610.0023053.658590
min0.6717850.2885734.7510390.0475100.2604280.0000000.0264780.0264780.3377590.9902910.000000
25%0.7168800.3785379.3229920.0932300.3571710.0000005.3115625.3115620.5451661.0000001.000000
50%0.7262900.40052011.7915550.1179160.3806010.0000005.7903805.7903800.6054241.0000001.000000
75%0.7367870.42283513.2858910.1328590.4044470.00000011.47925911.4792590.6217741.0000002.000000
max0.7498900.46592415.0780640.1507810.4325711.798764144.236540144.2365400.7213891.00000015.000000
\n", - "
" - ], - "text/plain": [ - " comet meteor spbleu bleu_1 rouge_l ews_score \\\n", - "count 22.000000 22.000000 22.000000 22.000000 22.000000 22.000000 \n", - "mean 0.723367 0.395541 11.050034 0.110500 0.371229 0.081762 \n", - "std 0.019745 0.047133 3.079936 0.030799 0.047562 0.383498 \n", - "min 0.671785 0.288573 4.751039 0.047510 0.260428 0.000000 \n", - "25% 0.716880 0.378537 9.322992 0.093230 0.357171 0.000000 \n", - "50% 0.726290 0.400520 11.791555 0.117916 0.380601 0.000000 \n", - "75% 0.736787 0.422835 13.285891 0.132859 0.404447 0.000000 \n", - "max 0.749890 0.465924 15.078064 0.150781 0.432571 1.798764 \n", - "\n", - " repetition_score total_repetitions rap \\\n", - "count 22.000000 22.000000 22.000000 \n", - "mean 17.147196 17.228958 0.583378 \n", - "std 33.021169 33.021512 0.100361 \n", - "min 0.026478 0.026478 0.337759 \n", - "25% 5.311562 5.311562 0.545166 \n", - "50% 5.790380 5.790380 0.605424 \n", - "75% 11.479259 11.479259 0.621774 \n", - "max 144.236540 144.236540 0.721389 \n", - "\n", - " translation_completeness num_max_output_tokens \n", - "count 22.000000 22.000000 \n", - "mean 0.999278 2.363636 \n", - "std 0.002305 3.658590 \n", - "min 0.990291 0.000000 \n", - "25% 1.000000 1.000000 \n", - "50% 1.000000 1.000000 \n", - "75% 1.000000 2.000000 \n", - "max 1.000000 15.000000 " - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "metrics_df.to_csv(metrics_path, index=False)\n", - "metrics_df.describe()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array(['Qwen/Qwen2-72B-Instruct', 'internlm/internlm2_5-7b-chat',\n", - " 'microsoft/Phi-3.5-mini-instruct',\n", - " 'shenzhi-wang/Llama3.1-70B-Chinese-Chat',\n", - " 'shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat'], dtype=object)" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "models = metrics_df[\"model\"].unique()\n", - "models" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "# list of markers for plotting\n", - "markers = [\n", - " \"o\",\n", - " \"x\",\n", - " \"^\",\n", - " \"s\",\n", - " \"d\",\n", - " \"P\",\n", - " \"X\",\n", - " \"*\",\n", - " \"v\",\n", - " \">\",\n", - " \"<\",\n", - " \"p\",\n", - " \"h\",\n", - " \"H\",\n", - " \"+\",\n", - " \"|\",\n", - " \"_\",\n", - "]\n", - "markers = {model: marker for model, marker in zip(models, markers)}" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [], - "source": [ - "model_orders = {\n", - " \"microsoft/Phi-3.5-mini-instruct\": 5,\n", - " \"internlm/internlm2_5-7b-chat\": 10,\n", - " \"Qwen/Qwen2-7B-Instruct\": 20,\n", - " \"shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat\": 30,\n", - " \"shenzhi-wang/Llama3.1-8B-Chinese-Chat\": 40,\n", - " \"shenzhi-wang/Llama3.1-70B-Chinese-Chat\": 50,\n", - " \"Qwen/Qwen2-72B-Instruct\": 60,\n", - " \"gpt-4o-mini\": 99,\n", - " \"gpt-4o\": 100,\n", - "}" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [], - "source": [ - "# plot mtr vs rpp\n", - "import matplotlib.pyplot as plt\n", - "import matplotlib.ticker as ticker\n", - "\n", - "\n", - "def plot_metrics_vs_rpp(\n", - " metrics_df,\n", - " models,\n", - " markers,\n", - " columns,\n", - " titles,\n", - " log_scales=[False, False],\n", - " sync_y_axis=False,\n", - "):\n", - " fig, ax = plt.subplots(figsize=(10, 6))\n", - " # set grid\n", - " ax.grid(True)\n", - " ax.set_axisbelow(True)\n", - " ax.minorticks_on()\n", - " ax.grid(which=\"major\", linestyle=\"-\", linewidth=\"0.5\", color=\"red\")\n", - "\n", - " # Create a mapping from original x-values to new, evenly spaced x-values\n", - " original_x_values = sorted(metrics_df[variant].unique())\n", - " new_x_values = range(len(original_x_values))\n", - " x_mapping = dict(zip(original_x_values, new_x_values))\n", - "\n", - " if len(columns) > 1:\n", - " twin = ax.twinx()\n", - "\n", - " for model in models:\n", - " model_df = metrics_df[metrics_df[\"model\"] == model]\n", - " transformed_x = [x_mapping[x] for x in model_df[variant]]\n", - " for i, column in enumerate(columns):\n", - " current_ax = twin if i > 0 else ax\n", - " current_ax.plot(\n", - " transformed_x,\n", - " model_df[column],\n", - " label=model + f\" [{titles[i]}]\" if titles else \"\",\n", - " marker=markers[model],\n", - " linestyle=\"--\" if i > 0 else \"-\",\n", - " )\n", - " current_ax.set_ylabel(titles[i])\n", - " if log_scales[i]:\n", - " current_ax.set_yscale(\"log\")\n", - "\n", - " if sync_y_axis:\n", - " ax.set_ylim(\n", - " min(ax.get_ylim()[0], twin.get_ylim()[0]),\n", - " max(ax.get_ylim()[1], twin.get_ylim()[1]),\n", - " )\n", - " twin.set_ylim(ax.get_ylim())\n", - "\n", - " # Set the x-axis ticks to be evenly spaced\n", - " ax.xaxis.set_major_locator(ticker.FixedLocator(new_x_values))\n", - "\n", - " # Set custom labels for the ticks\n", - " ax.xaxis.set_major_formatter(ticker.FixedFormatter(original_x_values))\n", - "\n", - " # ax.set_ylim(0, 1)\n", - " ax.set_xlabel(\"Repetition Penalty Parameter (RPP)\")\n", - " handles, labels = ax.get_legend_handles_labels()\n", - "\n", - " if len(columns) > 1:\n", - " handles_twin, labels_twin = twin.get_legend_handles_labels()\n", - " handles += handles_twin\n", - " labels += labels_twin\n", - "\n", - " # Sort the handles and labels by labels\n", - " sorted_handles_labels = sorted(\n", - " zip(labels, handles), key=lambda x: model_orders[x[0].split(\" \")[0]]\n", - " )\n", - " sorted_labels, sorted_handles = zip(*sorted_handles_labels)\n", - "\n", - " # Create a combined legend\n", - " ax.legend(\n", - " sorted_handles,\n", - " sorted_labels,\n", - " loc=\"lower center\",\n", - " bbox_to_anchor=(0.5, -0.75 if len(columns) > 1 else -0.435),\n", - " )\n", - "\n", - " plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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ismTJ2PChAlYv349bt68iXPnzuHrr7/Os7DMvHnzEBERgcuXL2Pw4MGwsbFBt27dAADTpk3DyZMnMWbMGERHR+P69ev45ZdfVBZUcXV1xdGjR3H37t0Ckw1XV1fcunUL0dHRePjwIdLT0/PU6d+/PwwMDDBo0CBcvnwZR44cwSeffIKBAwdKt0+Whrlz5yI4OBhfffUVrl27hkuXLiEsLAzLli0rdhs1atTAoUOHcPLkScTGxmLkyJHSrGdBCrpulpaW6N69O6ZMmYL27dujcuXKr903Nzc3ZGZm4uuvv8bff/+NH3/8Md/bNgvq048//ojY2FicOnUK/fv3l2Z038Ts2bPxww8/YO7cubhy5QpiY2OxadMmzJw5U6rj6uqKiIgIJCYmSjOIxTmuuPz8/BAVFVXkLziMjIwwfPhwBAUFQQih9nkKc+zYMbRv375E2yQiqkiYTBIRlSBdXV2MGTMGixcvRkpKCubPn49Zs2YhODgYderUgb+/P/bu3YuqVauqHLdo0SKMGzcODRs2RGJiIvbs2SM92+Xp6Yk//vgD165dwzvvvIP69etj9uzZcHR0lI6fN28ebt++jerVqxd4216PHj3g7++PNm3aoFKlSvm+NsPIyAgHDhzA48eP0ahRI/Ts2RNt27bFN998U4JXKa+PPvoIa9euRVhYGDw8PODr64vw8PA816kwM2fORIMGDeDn54fWrVvD3t5eSsgLUth1y7kNtaDVSIvLy8sLy5YtwxdffIF69ephw4YNCA4OLtax33//PZ48eYIGDRpg4MCBGDt2bLHeHVoUPz8//Prrrzh48CAaNWqEpk2bYvny5XBxcZHqLF26FIcOHYKzs7M0e1ec44qrQ4cO0NXVxeHDh4usO2bMGMTGxmLr1q1qn6cgUVFRePbsGXr27FlibRIRVTQyUdK/5iMiomKLjIxEmzZt8OTJk0Jvx6Oy9+OPP2LChAm4d+9eka+loNcTGhqK3bt348CBA2V+7oCAAHh5eWHGjBllfm4iovKCz0wSERHlkpqaioSEBCxatAgjR45kIlmKRo4ciadPnyI5OVmtd3i+qYyMDHh4eGDChAlldk4iovKIM5NERBrEmUntM2fOHCxYsACtWrXCL7/8AhMTE02HREREpJWYTBIREREREZHauAAPERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREamNySQRERERERGpjckkERERERERqY3JJBEREREREalNV9MBEFHxZGdnIzMzU9NhEBERlTo9PT3I5XJNh0FERWAySaTlhBBITEzE06dPNR0KERFRmbGwsIC9vT1kMpmmQyGiAjCZJNJyOYmkra0tjIyM+I8qERGVa0IIpKam4sGDBwAABwcHDUdERAVhMkmkxbKzs6VE0traWtPhEBERlQlD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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plot_metrics_vs_rpp(\n", - " metrics_df,\n", - " models,\n", - " markers,\n", - " [\"comet\", \"rap\"],\n", - " [\"COMET\", \"RAP-COMET\"],\n", - " sync_y_axis=True,\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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3m21z8cff4x+/fohNTUVrVu3rqMrISIiIiKipkzSniudToejR48iKirKvE4mkyEqKgrx8fG1OkdsbCymTJkCDw+PavcpKCiAIAho0aLF3ZZMRERERERkk6Q9V9evX4fBYIC/v/X04v7+/jhz5sxtj09ISMDJkycRGxtb7T4lJSV49dVX8fjjj8PT09PmPqWlpSgtLTW/12q1tbwCIiIiIiIiE8mHBd6N2NhYdO/eHf369bO5Xa/X47HHHoMoivjkk0+qPc+SJUuwePHiqhsmTwYUCkeVe+cSEgDeM0b2YJshe7HNkL3YZshebDNkL2dpM3p9rXeVNFz5+vpCLpcjKyvLan1WVhYCAgJqPLawsBCrV6/Gm2++aXN7RbC6fPkyfv7552p7rQBgwYIFiImJMb/XarUIDQ0F1qwBajiu3owbB2zeLHUV1JCwzZC92GbIXmwzZC+2GbKXs7QZrRbw8qrVrpLec6VUKtGnTx/ExcWZ1xmNRsTFxWHAgAE1Hrt27VqUlpZi2rRpVbZVBKtz585hz549aNmyZY3nUqlU8PT0tFqIiIiIiIjsIfmwwJiYGEyfPh19+/ZFv379sGzZMhQWFppnD3zqqacQHByMJUuWWB0XGxuL6OjoKsFJr9fj0UcfxbFjx7BlyxYYDAZkZmYCMM00qFTyQbxEREREROR4koeryZMn49q1a1i4cCEyMzPRq1cv7NixwzzJRWpqKmQy6w625ORkHDp0CLt27apyvrS0NGwu7z7s1auX1ba9e/di6NChdXIdRERERETUtEkergBg9uzZmD17ts1t+/btq7KuU6dOEEXR5v5hYWHVbiMiIiIiIqorkt5zRURERERE1FgwXBERERERETkAwxUREREREZEDMFwRERERERE5AMOVBY1Gg4iICERGRkpdChERERERNTAMVxbUajWSkpKQmJgodSlERERERNTAMFwRERERERE5AMMVERERERGRAzBcEREREREROQDDFRERERERkQMwXBERERERETkAwxUREREREZEDMFwRERERERE5AMMVERERERGRAzBcEREREREROQDDlQWNRoOIiAhERkZKXQoRERERETUwDFcW1Go1kpKSkJiYKHUpRHcsPj0ejwy7ivj0eKlLISIiImpSGK6IGhFRFLH82HJc8NRj+bHlEEVR6pKIiIiImgyGK6JG5HD6YZzKOQUAOJVzCofTD0tcEREREVHT4SJ1AUR05/QGPS5pLyElPwVnc89iTfIaq+1vxr+Jb0Z9g1burSSqkIiIiKjpsCtctWvXDomJiWjZsmVd1UNENhiMBly9eRUpeSk4l38OKfkpOJ9/HpcKLqFMLKv2uPTCdDy49kF0bdkVg0MGY0jwEHT17QqZwE5rIiIiIkezK1xdunQJBoOhrmohavJEUURmYSZS8lPMy7m8c7hQcAGlhlKbxzRTNEN7r/ZIvZGK/NJ8iKh6n9WpnFM4lXMKK39fCR9XH9wXfB8GBw/GwOCB8FR61vVlERERETUJHBZIJJGc4hyrAFXRG3VTf9Pm/q5yV7Rr0Q4dWnQwLx29O8Lf3R+H0w/jhT0vVPtZT3Z5EplFmYhPj0duSS42n9+Mzec3Qy7I0bNVTwwJGYIhIUPQoUUHCIJQV5dMRERE1KjZHa527twJLy+vGvcZN27cHRdE1NhodVqczz9vDlAVISq3JNfm/i6CC8K8wm6FKO8O6NiiI4KbBUMuk1fZXxRFrDi+AgIEm71WAgQcyz6G70d/jzKxDCeyT+DA1QM4cPUALhRcwLHsYziWfQzLji1DoEcgBgcPxuCQwegX0A/uCneH/z6IiIiIGiu7w9X06dNr3C4IAocOUpNUXFaMCwUXkJJX3huVfw4peSnIKsqyub8AAaHNQ60CVIcWHdDGsw0UckWtP1dv1COzMNNmsAIAEaahhnqjHkq5EpEBkYgMiMTLfV/G1RtXcTDtIA5ePYiEzARkFGbgh7M/4IezP0ApUyIyMBKDgwdjSMgQhDYPvaPfCxEREVFTYXe4yszMhJ+fX13UQtQgWM7QZ9kbdfXG1WoDToBHANq3aG8OUB28O6CdVzu4ubjddT1KuRKrx6y27gmbNw/46CPzWx9XHyjlyirHhjQPweOdH8fjnR9HcVkxEjMTceDqARy8ehDphen4Je0X/JL2C95NeBdhnmEYEjIEg0MGo49fH7sCIBEREVFTYFe4auz3Ymg0Gmg0Gva8EYA7m6HPW+WNjt4drXqj2rVoV+eTRgR4BCDAI+DWinwV0DLCrnO4ubiZ770SRREXCi6YglbaQRzPOo5L2ku4lHQJ/0v6HzwUHhgQOACDQwZjcPBgTvVOREREBDvDlSja/qt8Y6FWq6FWq6HVam97Xxk1Hnc6Q19FgLKcYKKlW+N4TIEgCGjfoj3at2iPGd1m4IbuBg6nH8bBqwdxMO0gcktysSd1D/ak7gEAdPHpYg5a3X2727w3jIiIiKixsytcTZ8+HW5udz+MiUgq9s7Qp5Kr0L5Fe5sz9DX2nlxLzZXNMTxsOIaHDYdRNOJ0zmlzr9bJ6ydxOvc0Tueexmd/fAZvlTcGBQ/C4ODBGBQ8CF4q/qGCiIiImga7wtXIkSOhUqnM769evYqgoCDIZKYHkhYVFeHjjz/GK6+84tgqiexU1zP0NWUyQYauvl3R1bcrZvWahZziHPyS/gsOXD2Aw2mHkVeahy0XtmDLhS2QCTLzVO+Dgwcj3Du8SYVSIiIialrsClePP/44MjIyzBNaRERE4MSJE2jXrh0A4MaNG1iwYAHDFdWbu52hryJMhXmGcYKGO9TSrSXGtR+Hce3HQW/U4/fs33EgzTQpRkp+Co5nH8fx7ONYfmw5/N39zcMH7w28l1O9ExERUaNyV/dcNfZ7sMh53MkMff7u/lZTnDtyhj6yTSFToG9AX/QN6IuYPjFIv5mOQ2mHcODqARzJOIKsoiysO7sO686uM+3r39c8A2EbzzZSl09ERER0V+yeip2oLjWkGfro9oKaBeGxTo/hsU6PoaSsBL9l/WZ+gHHazTTEZ8QjPiMe7yW+hzaebcwPMO7r39fm1PFEREREzozhiiTBGfqaHlcXV9wXfB/uC74PC/otwEXtRdPsg1cP4mjWUVzWXsZl7WV8c/obuLm44d7Ae833avl7+EtdPhEREdFt2R2udu7caZ6m3Gg0Ii4uDidPngQA5OfnO7Q4ahzuZIa+dl7tbvVGNdEZ+hozQRDQzqsd2nm1w/Su03FTdxO/ZvxqnoHwevF17L2yF3uv7AUAdPLuZB4+2MO3BycZISIiIqdkd7iaPn261fvnn3/e6j2//DZdnKGP7lQzZTNEtYlCVJsoGEUjzuSeMQetP6/9ieS8ZCTnJePzPz+Hl8oLA4MGYkjIEAwKGgRvV2+pyyciIiICYGe4MhqNdVUHNSB3M0Nf+xbtzT1SnKGPbJEJMkS0jEBEywi80PMF5Jbk4pe0X3Dw6kEcSj+EgtICbL+4HdsvbodMkKG7b3fz8MHOPp35Bx4iIiKSDO+5sqDRaKDRaGAwGKQuxSlwhj5yBj6uPhjbfizGth+LMmMZ/rj2h7lX62zeWfx+7Xf8fu13rDi+Aq3cWmFwyGAMCR6Ce4PuhYfCQ+ryiYiIqAmxK1wdOHCgVvsNGTLkjoqRmlqthlqthlarNd9X1hQ4Yoa+il4pztBHdclF5oLe/r3R27835vaZi8zCTBxMO2ie6v1a8TVsOLcBG85tgIvMBX38+2BIsOlerTDPMPZqERERUZ2yK1wNHTrU/OWkumdcCYLAnh8ndTcz9FkO5+MMfeQsAjwCMCl8EiaFT0KpoRRHM4/iQJppqvcrN67gSMYRHMk4gg9++wChzUMxOHgwhoQMQd+AvlDJVVKXT0RERI2MXeHK29sbzZs3x9NPP40nn3wSvr6+dVUXlYtPj8e7w65ifno8BgQNqPVxnKGPmhqVXIWBwQMxMHgg5vebj0sFl8y9Wr9l/YYrN67guzPf4bsz38HNxQ39A/qbhhCGDEGAR4DU5RMREVEjYFe4ysjIwMaNG7Fq1Sq8//77GDVqFJ599lmMGDGCX8DrgCiKWH5sOS546rH82HLcG3hvld+zI2bo69CiA0KahXCGPmpUwrzCEOYVhicjnkShvhC/Zvxqfq5WdnE29l3dh31X9wEAOnp3NPdq9WzVEy4y3o5KRERE9rPrG4RSqcTkyZMxefJkpKam4ssvv8Ts2bNRWlqK6dOnY/HixXBx4ZcSRzmcfhinck4BAE7lnML3Z76Hh8Kj1jP0hTQPseqF4gx91FR5KDzwUOuH8FDrhyCKIpLzknHwqqlX64/rf+Bc3jmcyzuHVSdXobmyOQYFDTJN9R48CD6uPlKXT0RERA2EIFZ381QtXbx4Ec8++yz279+Pa9euwcfH/i8iGo0GH3zwATIzM9GzZ0+sWLEC/fr1s7nv0KFDsX///irrR40aha1btwIANmzYgJUrV+Lo0aPIzc3F8ePH0atXr1rXUzGhRUFBATw9pZmgQRRFPL71cSTlJFU7M18FztBHVYwbB2zeLHUVDUJ+ST5+Sf8FB64ewC/pv6CgtMC8TYCA7r7dMThkMAaHDEYXny6QCTIJq61DbDNkL7YZshfbDNnLSdqMPdngjrqZSktLsX79eqxatQrx8fEYPXo0tm7dekfBas2aNYiJicHKlSvRv39/LFu2DMOHD0dycjL8/Pyq7L9hwwbodDrz+5ycHPTs2ROTJk0yryssLMR9992Hxx57DDNnzryTS5ScZa+VpXDvcPT178sZ+ogcpIVrC4xuNxqj242GwWjAn9f/NE/1fib3DP64/gf+uP4HNCc08HXzxX3B92FIyBAMCByAZspmUpdPRERETsSucJWQkIAvvvgCq1evRlhYGGbMmIEffvjhjkJVhaVLl2LmzJmYMWMGAGDlypXYunUrVq1ahfnz51fZv/JnrV69Gu7u7lbh6sknnwQAXLp06Y7rkpIoilhxfAVkggxG8daDm2WCDAqZAvP7zec9bkR1QC6To5dfL/Ty64WXer+ErMIsHEo7hANXDyA+Ix7Xi69jU8ombErZBBfBNC18xb1abb3a8n+XRERETZxd4eree+9F69at8dJLL6FPnz4AgEOHDlXZb9y4cbU6n06nw9GjR7FgwQLzOplMhqioKMTHx9fqHLGxsZgyZQo8PO78YaGlpaUoLb01FblWq73jczlCdb1WRtGIUzmncDj9MAYFD5KgMqKmxd/DHxPDJ2Ji+EToDDoczTqKg2mmSTEuaS8hITMBCZkJ+PDohwhuFmwOWpEBkXB1cZW6fCIiIqpndg8LTE1NxVtvvVXtdnuec3X9+nUYDAb4+/tbrff398eZM2due3xCQgJOnjyJ2NjYWn1edZYsWYLFixdX3TB5MqCo38kfRIhY8UA6BG9AtPFHcEEEVvzwEgbuDYIA/pWcqpGQYBqnTA6jBDCgfHkFAlI9QnAwoAgHAouR6FuMtJtpWJ28GquTV8O1TEC/a64YkumOwZluCCpqAJPIsM2QvdhmyF5sM2QvZ2kzen2td7UrXBmNxtvvVI9iY2PRvXv3aie/qK0FCxYgJibG/F6r1SI0NBRYswao5wkt9AYdMtc9DLEkx+Z2UQAyg5pDv3E9lHJlvdZGDYiT3ADamLUG8ET5UqQvwpGMI+bnamUVZeFAYDEOBBYDADq06IDBwaZJMXr59YJC5oRhi22G7MU2Q/ZimyF7OUub0WoBL69a7SrpvOm+vr6Qy+XIyrKeTjwrKwsBATU/1LOwsBCrV6/Gm2++edd1qFQqqFSquz6PIyjlSqwes9r6OVXz5gEffWR+6+Pqw2BF5ETcFe54oPUDeKD1AxBFEWfzzpqHD564dsL8DLovTn2B5ormGBA0wDzVu68bH8ZORETUWNxRuFq7di2+//57nD17FgAQHh6OqVOn4tFHH7XrPEqlEn369EFcXByio6MBmHrH4uLiMHv27NvWUFpaimnTpt3JJTi1AI8ABHhYhMt8FdAyQrqCiKjWBEFAJ59O6OTTCc91fw4FpQU4nH7YNNV72i/IK83Drsu7sOvyLgBAt5bdMDjEdK9WRMuIxjvVOxERURNg97DAxx9/HGvXrkV4eDg6d+4MADh16hQmT56MSZMm4fvvv7drxqyYmBhMnz4dffv2Rb9+/bBs2TIUFhaaZw986qmnEBwcjCVLllgdFxsbi+joaLRs2bLKOXNzc5Gamor09HQAQHJyMgAgICDgtj1iRESO5KXywsi2IzGy7UgYjAaczDlpfoDx6dzTOJlzEidzTuKT3z+Bj6sP7gu+D4NDBmNg0EA+ZoGIiKiBsStcLV++HHv27MHmzZsxZswYq22bN2/GjBkzsHz5csydO7fW55w8eTKuXbuGhQsXIjMzE7169cKOHTvMk1ykpqZCJrP+S25ycjIOHTqEXbt22TxnRS0VpkyZAgBYtGgR3njjjVrXRkTkSHKZHD1b9UTPVj0x+57ZuFZ0DYfSDuFg2kEcTj+M3JJcbD6/GZvPb4ZckOMev3tMvVrBQ9C+RXtO9U5EROTkBFEUxdru3KNHD8ydOxfPPPOMze2xsbFYvnw5/vjjD4cVKAV7nsJcL5zlZj5qONhmGhy9QY9j2cdMvVppB3Cx4KLV9iCPIPPwwciASLi5uDm2ALYZshfbDNmLbYbs5SRtxp5sYFfP1blz5xAVFVXt9qioqNveK0VERFUp5Ar0D+yP/oH98bfIv+HKjSvmoJWYkYj0wnSsSV6DNclroJKrEBkQaX6uVkjzEKnLJyIiItgZrtzc3JCfn4/WrVvb3K7VauHqygdnEhHdrdDmoZjaZSqmdpmK4rJiJGQkmKd6zyjMwKG0QziUdghLEpagrVdbDAkegiEhQ3CP3z1QyJ1wqnciIqImwK5wNWDAAHzyySf45JNPbG7XaDQYMGCAQwojIiITNxc33B96P+4PvR+iKOJ8/nkcSDuAA1cP4ET2CVwsuIiLBRfxVdJX8FB4YGDQQAwOHoz7gu9DK/dWUpdPRETUZNgVrl577TUMHToUOTk5+Nvf/obOnTtDFEWcPn0aH374IX788Ufs3bu3rmolImryBEFAB+8O6ODdAc90ewZanRaH0w/j4NWDOJR2CLkludh9eTd2X94NAOji0wVDQky9Wl1bdoVcJq9yzvj0eLw77Crmp8djQBD/QEZERHSn7ApXAwcOxJo1a/CXv/wF69evt9rm7e2N77//HoMGDXJogfVJo9FAo9HAYDBIXQoRUa14Kj0xImwERoSNgFE0IiknCQeumnq1TuWcwunc0zidexqf/vEpvFXeVlO9e6m8IIoilh9bjgueeiw/thz3Bt7LWQmJiIjukN0PER4/fjyGDx+OnTt34ty5cwBMDxF++OGH4e7u7vAC65NarYZarTbPCEJE1JDIBBm6+XZDN99ueLHXi7hefN001ftV01TveaV5+OnCT/jpwk+QC6Zp4Vt7tsapnFMAgFM5p3A4/TAGBTfcP5IRERFJya5w9fPPP2P27Nn49ddfMX78eKttBQUF6Nq1K1auXInBgwc7tEgiIrKfr5svojtEI7pDNPRGPU5knzA/wPh8wXkcyz6GY9nHzPsLELDs6DIMDBrI3isiIqI7ILv9LrcsW7YMM2fOtDm/u5eXF55//nksXbrUYcUREZFjKGQKRAZEIqZvDDZFb8KOiTswpdMUq31EiDiTdwaz9sxCcm6yRJUSERE1XHaFq99//x0jRoyodvvDDz+Mo0eP3nVRRERUt4I8gvDn9T8hE6r+38Av6b/g0Z8exYwdM7Dn8h6UGcskqJCIiKjhsWtYYFZWFhSK6p+f4uLigmvXrt11UUREVLcOpx8232tliwwy/Jb1G37L+g2BHoGY3GkyJnaciBauLeqvSCIiogbGrp6r4OBgnDx5strtf/zxBwIDA++6KCIiqjuiKGLF8RUQYPu+KgGm6d6f6/YcWqhaIKMwA8uOLUPUuii8cfgNDhkkIiKqhl3hatSoUXj99ddRUlJSZVtxcTEWLVqEMWPGOKw4IiJyPL1Rj8zCTIgQbW4XISKnOAezes3C7kd3482Bb6KzT2eUGkqx/tx6PPrTo3hm5zMcMkhERFSJXcMC//nPf2LDhg0IDw/H7Nmz0alTJwDAmTNnzM+Heu211+qkUCIicgylXInVY1YjtyT31sp584CPPjK/9XH1gVKuBACM7zge0R2icTz7OL49/S3iUuOQmJmIxMxEBHoEYkrnKZjYcSK8VHyEBRERNW12hSt/f38cPnwYs2bNwoIFCyCKpr96CoKA4cOHQ6PRwN/fv04KJSIixwnwCECAR8CtFfkqoGVEtfsLgoDe/r3R2783Mgsz8UPyD1h7di0yCjPw0dGP8MmJTzC63Wg83vlxdPLpVA9XQERE5HzsfohwmzZtsG3bNuTl5SElJQWiKKJjx47w9vaui/qIiMjJBHgE4KXeL+EvPf6C7Re347sz3+FM7hmsP7ce68+tR2RAJKZ2noqhoUPhIrP7/2aIiIgarDv+fz1vb29ERkY6shbJaTQa8/BGIiKqmauLq3nI4LHsY/ju9HccMkhERE2aXRNaNHZqtRpJSUlITEyUuhQiogZDEAT08e+DD4d+iB0Td+C57rdmGfzo6EeIWstZBomIqGlguCIiIocJ8AjAnN5zzLMMdvLuhBJDidUsg3GX4zjLIBERNUocDE9ERA5Xecjgt6e/xc+pP5uHDAZ5BGFy58kcMkhERI0KwxUREdWZiiGDffz7ILMwE2uS12Dd2XVIL0y3mmVwapepCPcOl7pcIiKiu8JhgUREVC9qGjI4cfNE85BBg5GTChERUcPEnisiIqpXHDJIRESNFcMVERFJgkMGiYioseGwQCIikhyHDBIRUWPAnisiInIatRkyOKXzFEzoOIFDBomIyOkwXBERkdOxHDKYcTMDa5LXYP259UgvTMfSo0vx3xP/5ZBBIiJyOhwWaEGj0SAiIgKRkZFSl0JEROUCmwVibp+51Q4ZfHbns4hL5ZBBIiKSHnuuLKjVaqjVami1Wnh5cbgJEZEzqW7IYEJmAhIyEzhkkIiIJMdwRUREDQqHDBIRkbPisEAiImqwOGSQiIicCXuuiIiowbMcMng06yi+O/Md4lLjOGSQiIjqFcMVERE1GoIgoG9AX/QN6GseMrju3DqrIYNj2o/B1M5T0dG7o9TlEhFRI8NhgURE1ChVDBnc8+geLB64GOHe4SgxlGDd2XWYsHkChwwSEZHDseeKiIgaNVcXV0zoOAHjO4y3OWQwuFkwpnSagvEdx3PIIBER3RWGKyIiahKqGzKYdjMNHx79EJoTGg4ZJCKiu8JhgURE1OTcbsjgczuf45BBIiKyG3uuLGg0Gmg0GhgM/D9TIqKmoLohg0cyj+BI5hEOGSQiIruw58qCWq1GUlISEhMTpS6FiIjqUcWQwaVDl2LHhB14ptsz8FJ5mYcMRq2NwuL4xTiXd07qUomIyIkxXBEREVkIbBaIeX3mccggERHZjcMCiYiIbLAcMvhb1m/4/sz3HDJIREQ1YrgiIiKqgSAIiAyIRGRAJNJvpmNN8hqsP7fePGTwv7//F2PamWYZ7ODdQepyiYhIQhwWSEREVEtBzYIwr8887H50t3nIYHFZMdaeXYvxm8fjuZ3P4efUnzlkkIioiWLPFRERkZ3cXNw4ZJCIiKpwip4rjUaDsLAwuLq6on///khISKh236FDh0IQhCrL6NGjzfuIooiFCxciMDAQbm5uiIqKwrlznOGJiIgcq2LI4NKhS7F9wvYqswwOWzcMb8a/iZS8FKlLJSKieiB5uFqzZg1iYmKwaNEiHDt2DD179sTw4cORnZ1tc/8NGzYgIyPDvJw8eRJyuRyTJk0y7/P+++/jP//5D1auXIkjR47Aw8MDw4cPR0lJSX1dFhERNTGWQwbfGPAGhwwSETVBkoerpUuXYubMmZgxYwYiIiKwcuVKuLu7Y9WqVTb39/HxQUBAgHnZvXs33N3dzeFKFEUsW7YM//znP/HII4+gR48e+N///of09HRs2rSpHq+MiIiaIjcXN0wMn4h1Y9dh1fBViGodBZkgw5HMI5izdw5GbxyNL09+iYLSAqlLJSIiB5M0XOl0Ohw9ehRRUVHmdTKZDFFRUYiPj6/VOWJjYzFlyhR4eHgAAC5evIjMzEyrc3p5eaF///7VnrO0tBRardZqISIiuhsVQwY/euAjDhkkImoiJJ3Q4vr16zAYDPD397da7+/vjzNnztz2+ISEBJw8eRKxsbHmdZmZmeZzVD5nxbbKlixZgsWLF1fdMHkyoFDcto46l5AAjBsndRXUkLDNkL3YZupUEIB5AF6Qt8C2UAW+7VCAc16mIYNrz65F/2xXTE3xxP0Z7pBDkLrc2mGbIXuxzZC9nKXN6PW13rVBzxYYGxuL7t27o1+/fnd1ngULFiAmJsb8XqvVIjQ0FFizBvD0vNsy7964ccDmzVJXQQ0J2wzZi22mXrgBmAhggijit6zf8N3p7/DzlZ9xxK8ER/xKENwsGI93fhzRHaKdf5ZBthmyF9sM2ctZ2oxWC3jV7t9kSYcF+vr6Qi6XIysry2p9VlYWAgICajy2sLAQq1evxrPPPmu1vuI4e86pUqng6elptRAREdWVykMGZ3SbYR4y+O/f/s0hg0REDZSk4UqpVKJPnz6Ii4szrzMajYiLi8OAAQNqPHbt2rUoLS3FtGnTrNa3bdsWAQEBVufUarU4cuTIbc9JRERU34KaBSGmT4x5lsGO3h2tZxncxVkGiYgaCsmHBcbExGD69Ono27cv+vXrh2XLlqGwsBAzZswAADz11FMIDg7GkiVLrI6LjY1FdHQ0WrZsabVeEATMnTsX//rXv9CxY0e0bdsWr7/+OoKCghAdHV1fl0VERGSXilkGJ3ScYD1kMOMIjmQcaVhDBomImijJw9XkyZNx7do1LFy4EJmZmejVqxd27NhhnpAiNTUVMpl1B1tycjIOHTqEXbt22TznK6+8gsLCQvzlL39Bfn4+7rvvPuzYsQOurq51fj1ERER3o2LIYGRAJNJvpmN18mqsP7vePGRQc0KDMe3GYGrnqejg3UHqcomIyIIgiqIodRHORqvVwsvLCwUFBc5x/5Wz3MxHDQfbDNmLbcapFZcVY9uFbfj2zLc4l3fOvL5/YH880fkJDAkZArlMXr9Fsc2QvdhmyF5O0mbsyQaS91wRERFRzSoPGfz29LfYe2UvhwwSETkZhisiIqIGojZDBse2G4upXaaifYv2UpdLRNTkSDpbIBEREd2ZilkG90zag0UDFplnGfzh7A+I/jEaz+16DntT93KWQSKiesSeKyIiogbMzcUNj4Y/iokdJ3LIIBGRxNhzZUGj0SAiIgKRkZFSl0JERGSXiiGDyx5YZn4wsafS0+rBxG/Fv4Xz+eelLpWIqNFiuLKgVquRlJSExMREqUshIiK6Y5WHDHZo0YFDBomI6gGHBRIRETVStR0yOL7jeHgqneDRI0REDRzDFRERUSNnOctg2s00rDmzBuvPcZZBIiJH47BAIiKiJiS4WTBi+lY/ZHDmrpkcMkhEdIfYc0VERNQEWQ4ZTMxMxLenv8W+q/vwa8av+DXjVw4ZJCK6A+y5IiIiasIEQUC/wH5Y/uBybJuwDTO6Ws8yGLU2qsosg/Hp8Xhk2FXEp8dLWDkRkfNhuCIiIiIAtR8yuPzYclzw1GP5seUQRVHqsomInAaHBRIREZGV2w0ZrHAq5xQOpx/GoOBBElZLROQ82HNFRERENlUeMvh0xNOQCdZfHd6MfxN6g16iComInAvDFREREd1WcLNg3Bt0L4yi0Wp9emE6Rm4YiV2XdnGIIBE1eQxXFjQaDSIiIhAZGSl1KURERE5FFEWsOL6iSs8VAGQVZeHl/S9jytYpOJx+mCGLiJoshisLarUaSUlJSExMlLoUIiIip3I4/TBO5Zyq0nNVQSVTISknCc/vfh4zd83En9f+rOcKiYikx3BFRERENarotRIg2NwuQECYVxie6PwEFDIFjmQewdRtUzF371yrKdyJiBo7hisiIiKqkd6oR2ZhJkTYHu4nQsT14uuI6RuDLeO34JH2j0AmyBCXGocJmyfgn4f+ifSb6fVcNRFR/eNU7ERERFQjpVyJ1WNWI7ck99bKefOAjz4yv/Vx9YFSrkRQsyD8675/4emuT2PF8RX4+crP+PH8j9h2cRsmd5qMmT1mwsfVR4KrICKqewxXREREdFsBHgEI8Ai4tSJfBbSMqHb/Dt4dsPzB5fj92u9Yfmw5EjMT8c3pb7Dh3AZM7zodT0U8hWbKZvVQORFR/eGwQCIiIqozPVv1ROzDsfg06lN08emCorIifPL7Jxi1YRS+TvoapYZSqUskInIYhisiIiKqU4IgYGDwQKwesxr/vv/fCPMMQ15pHt5PfB9jNo7BxnMbUWYsk7pMIqK7xnBFRERE9UImyDA8bDg2PrIRbwx4A37ufsgszMTCwwsxcfNE7Lm8h8/IIqIGjeGKiIiI6pWLzAUTwydi6/iteLnPy/BSeeFCwQXM2zcPT2x7AkcyjkhdIhHRHWG4IiIiIkm4urji6W5PY/uE7fhLj7/AzcUNf17/E8/teg4zd83EqeunpC6RiMguDFcWNBoNIiIiEBkZKXUpRERETUZzZXP89Z6/YtuEbZjaeSpcZC74NeNXTNk6BTH7YnCh4ILUJRIR1QrDlQW1Wo2kpCQkJiZKXQoREVGT4+vmiwX9F+Cn6J8wtt1YCBCw+/JujP9xPBYdXoTMwkypSyQiqhHDFRERETmVkOYheGfwO1g3bh2Ghg6FUTRiw7kNGL1hND5I/AB5JXlSl0hEZBPDFRERETmlcO9wrHhwBb4e+TX6+PeBzqjD/5L+h5EbRmLl7ytRpC+SukQiIisMV0REROTUevn1whfDv8AnUZ+gs09nFOoLoTmhwcgNI/Ht6W+hM+ikLpGICADDFRERETUAgiDgvuD7sGbMGrw/5H20bt4auSW5eDfhXYzdOBabz2+GwWiQukwiauIYroiIiKjBkAkyjGw7EpuiN+H1e19HK7dWSC9Mx2uHXsOjPz2Kn1N/5oOIiUgyDFdERETU4ChkCjzW6TFsnbAV8/rMQ3Nlc6Tkp2DO3jmYtn0aEjM58y8R1T+GKyIiImqw3Fzc8Ey3Z7B9wnY81/05uMpd8ce1P/DMzmfwwu4XkJSTJHWJRNSEMFwRERFRg+el8sKc3nOwbcI2TO40GS6CC35J/wWTt0zG3/b/DZcKLkldIhE1AQxXFjQaDSIiIhAZGSl1KURERHQHWrm3wj/v/Sc2R2/G6HajIUDAzks7Ef1jNBbHL0ZWYZbUJRJRI8ZwZUGtViMpKQmJiRynTURE1JCFeobi3cHvYu3YtRgSMgQG0YB1Z9dh9MbRWPrbUhSUFkhdIhE1QgxXRERE1Gh18ukEzUMafDXiK9zjdw9KDaX44tQXGLl+JD774zM+iJiIHIrhioiIiBq93v698dWIr6B5SINw73Dc0N/AiuMrMGrDKHx/5nvoDXqpSySiRoDhioiIiJoEQRAwJGQI1o5di3cHv4uQZiHIKcnBO0fewdhNY/HT+Z/4IGIiuisMV0RERNSkyAQZRrcbjc3Rm/Fa/9fg6+aLtJtp+Mehf2DSlknYf2U/H0RMRHeE4YqIiIiaJIVcgSmdp2Dr+K2Y03sOmiua41zeOcz+eTam75iOo1lHpS6RiBoYycOVRqNBWFgYXF1d0b9/fyQkJNS4f35+PtRqNQIDA6FSqRAeHo5t27aZt9+4cQNz585FmzZt4ObmhoEDB3L2PyIiIqqWu8Idz3V/Dtsnbscz3Z6BSq7C8ezjeHrH03hxz4tIzk2WukQiaiAkDVdr1qxBTEwMFi1ahGPHjqFnz54YPnw4srOzbe6v0+kwbNgwXLp0CevWrUNycjI+//xzBAcHm/d57rnnsHv3bnz99df4888/8fDDDyMqKgppaWn1dVlERETUAHmpvDCvzzxsHb8Vk8InQS7IcTDtIB796VG8euBVXNFekbpEInJykoarpUuXYubMmZgxYwYiIiKwcuVKuLu7Y9WqVTb3X7VqFXJzc7Fp0yYMGjQIYWFhuP/++9GzZ08AQHFxMdavX4/3338fQ4YMQYcOHfDGG2+gQ4cO+OSTT+rz0oiIiKiB8vfwx8IBC/Fj9I8YGTYSALDt4jaM2zQO//r1X7hWdE3iConIWUkWrnQ6HY4ePYqoqKhbxchkiIqKQnx8vM1jNm/ejAEDBkCtVsPf3x/dunXDO++8A4PBNLNPWVkZDAYDXF1drY5zc3PDoUOHqq2ltLQUWq3WaiEiIqKmrY1nG7x///v4YcwPGBQ8CGViGdYkr8GoDaOw7OgyPoiYiKpwkeqDr1+/DoPBAH9/f6v1/v7+OHPmjM1jLly4gJ9//hlPPPEEtm3bhpSUFLz44ovQ6/VYtGgRmjdvjgEDBuCtt95Cly5d4O/vj++//x7x8fHo0KFDtbUsWbIEixcvrrph8mRAobir63SIhARg3Dipq6CGhG2G7MU2Q/ZqQm2mC4CVABJ9A7C8Wx5+b1mC2JOx+OHYF3g22QtTz3vCzSD5bezOrwm1GXIQZ2kz+to/B08QJZprND09HcHBwTh8+DAGDBhgXv/KK69g//79OHLkSJVjwsPDUVJSgosXL0IulwMwDS384IMPkJGRAQA4f/48nnnmGRw4cAByuRy9e/dGeHg4jh49itOnT9uspbS0FKWlpeb3Wq0WoaGhKCgogKenpyMv+86MGwds3ix1FdSQsM2QvdhmyF5NtM2Iooh9V/bhP8f/g5T8FABAK7dWeKHnCxjfcTwUMif4o6yzaqJthu6Ck7QZrVYLLy+vWmUDyf7M4uvrC7lcjqysLKv1WVlZCAgIsHlMYGAgwsPDzcEKALp06YLMzEzodDoAQPv27bF//37cvHkTV65cQUJCAvR6Pdq1a1dtLSqVCp6enlYLERERUWWCIOCB1g9g3dh1eOe+dxDcLBjXiq/hrV/fwiObHsG2C9tgFI1Sl0lEEpEsXCmVSvTp0wdxcXHmdUajEXFxcVY9WZYGDRqElJQUGI23/tE6e/YsAgMDoVQqrfb18PBAYGAg8vLysHPnTjzyyCN1cyFERETU5MhlcoxtPxabozdjQb8F8HH1wZUbV/DqwVfx2E+P4eDVg3wQMVETJOkA4ZiYGHz++ef46quvcPr0acyaNQuFhYWYMWMGAOCpp57CggULzPvPmjULubm5mDNnDs6ePYutW7finXfegVqtNu+zc+dO7NixAxcvXsTu3bvxwAMPoHPnzuZzEhERETmKUq7E1C5TsX3CdszuNRvNFM2QnJeMF+NexNM7nsbx7ONSl0hE9UiyCS0AYPLkybh27RoWLlyIzMxM9OrVCzt27DBPcpGamgqZ7Fb+Cw0Nxc6dOzFv3jz06NEDwcHBmDNnDl599VXzPgUFBViwYAGuXr0KHx8fTJw4EW+//TYUzjAxBRERETVK7gp3PN/zeUzuNBmxJ2Px3envcCz7GJ7a/hSGhgzFX3v/FeHe4VKXSUR1TLIJLZyZPTet1QsnuZmPGhC2GbIX2wzZi22mRpmFmVj5+0psStkEg2iAAAGj243Gi71eRGjzUKnLkwbbDNnLSdpMg5jQgoiIiKixCvAIwBsD38DGRzbi4TYPQ4SILRe2YNymcXjnyDu4Xnxd6hKJqA4wXBERERHVkbZebfHh0A+xesxqDAwaiDJjGb4/8z1GbRiF/xz7D27obkhdIhE5EMMVERERUR3r2rIrPh32Kf7v4f9Dd9/uKC4rxud/fo6RG0bii5NfoKSsROoSicgBGK6IiIiI6kn/wP74dtS3WPbAMrTzaoeC0gIsPboUozeOxrqz61BmLJO6RCK6CwxXFjQaDSIiIhAZGSl1KURERNRICYKAh1o/hA3jNuCtQW8h0CMQ2UXZWBy/GNE/RmPHpR18EDFRA8VwZUGtViMpKQmJiYlSl0JERESNnFwmR3SHaGwZvwWvRr4Kb5U3Lmsv4+/7/44pW6bgl7Rf+CBiogaG4YqIiIhIQkq5EtMipmH7xO14sdeL8FB44HTuabyw5wU8u+tZ/H7td6lLJKJaYrgiIiIicgIeCg/M6jkL2yZsw5MRT0IhUyAxMxHTtk3DSz+/hJS8FKlLJKLbYLgiIiIiciI+rj54JfIVbB2/FeM7jIdMkGHvlb2YsHkCXjv0GtJupkldIhFVg+GKiIiIyAkFNgvEm4PexMZxGzGszTCIELH5/GaM2TgG7ya8i5ziHKlLJKJKGK6IiIiInFi7Fu2wdOhSfDfqO/QP7I8yYxm+Pf0tRm4YCc0JDW7qbkpdIhGVY7giIiIiagC6t+qO/3v4//DZsM/QtWVXFJcVY+XvKzFyw0h8deorlBpKpS6RqMljuCIiIiJqQAYEDcD3o7/H0qFLEeYZhvzSfPz7t39j9IbR2HBuAx9ETCQhhisiIiKiBkYQBAxrMwwbH9mINwe+CX93f2QVZWHR4UUY/+N47L68m8/IIpIAwxURERFRA+Uic8H4juOxdcJW/K3v39BC1QKXtJcQsy8Gj299HPHp8VKXSNSkMFxZ0Gg0iIiIQGRkpNSlEBEREdWaSq7C9K7TsX3CdrzQ8wW4ubjhVM4p/GX3X/Dcrudw8vpJqUskahIYriyo1WokJSUhMTFR6lKIiIiI7NZM2QzqXmpsn7Ad07pMg0KmwJGMI3h86+OYt3ceLuRfkLpEokaN4YqIiIiokWnp1hKv9nsVP43/CePaj4NMkGFP6h6M3zwer//yOjJuZkhdIlGjxHBFRERE1EgFNwvG2/e9jfVj1+PB0AdhFI3YlLIJozeOxvuJ7yO3JFfqEokaFYYrIiIiokaug3cHLH9wOb4Z9Q0iAyKhN+rxddLXGLVhFD458QkK9YVSl0jUKDBcERERETURPVv1ROzDsfg06lN08emCQn0h/vv7fzFy/Uh8k/QNdAad1CUSNWgMV0RERERNiCAIGBg8EKvHrMYH93+ANp5tkFeah/cS38OYjWOwKWUTDEaD1GUSNUgMV0RERERNkEyQYUTYCGx8ZCMWDVgEPzc/ZBRm4PVfXsfEzRMRdzmODyImshPDFREREVETppAp8Gj4o9g6YSte7vMyPJWeOF9wHnP3zcUT255AQkaC1CUSNRgMV0REREQEVxdXPN3taWyfuB0zu8+Em4sb/rz+J57d9Sye3/08TuWckrpEIqfHcGVBo9EgIiICkZGRUpdCREREJAlPpSde6v0Stk3Yhsc7Pw4XmQsOpx/GlC1T8PK+l3Gx4KLUJRI5LYYrC2q1GklJSUhMTJS6FCIiIiJJ+br54h/9/4Gfon/C2HZjIUDArsu7MP7H8Xjj8BvILMyUukQip8NwRURERETVCmkegncGv4N149ZhaMhQGEQD1p9bj9EbRuPD3z5Efkm+1CUSOQ2GKyIiIiK6rXDvcKx4aAW+Hvk1evv1hs6ow5envsTIDSPx6e+fokhfJHWJRJJjuCIiIiKiWuvl1wtfjvgS/33ov+js0xk39Tfx8YmPMXLDSHx3+jvoDXqpSySSDMMVEREREdlFEAQMDhmMNWPW4P0h7yO0eShyS3KxJGEJxm4ai5/O/2T1IOL49Hg8Muwq4tPjJayaqO4xXBERERHRHZEJMoxsOxI/Rv+I1+99Ha3cWiHtZhr+cegfePSnR7E3dS+MRiOWH1uOC556LD+2nA8mpkaN4YqIiIiI7opCpsBjnR7D1glbMbf3XDRXNkdKfgpe2vsSojdHm5+RdSrnFA6nH5a4WqK6w3BFRERERA7h5uKGZ7s/i+0TtuO57s9BJVNZPRdLgID/HP8Pe6+o0WK4IiIiIiKH8lJ5YU7vOXhz0JtW60WISMpJwqsHX0X6zXSJqiOqOwxXRERERORwoijif0n/g0yo+nVz+8XtGL5+OF7c8yL2XdmHMmNZ/RdIVAdcpC7AmWg0Gmg0GhgMhtvvTERERETVOpx+2HyvVXUOph3EwbSD8Hf3x8SOEzG+43gEeATUU4VEjseeKwtqtRpJSUlITEyUuhQiIiKiBksURaw4vgICBJvbBQjo2KIjpkdMh7fKG1lFWfjv7//F8PXD8def/4oDVw9YTeVO1FCw54qIiIiIHEpv1COzMBMibE9cIUJEbkkuXur9El7q/RL2XN6DtWfX4res37Dvyj7su7IPQR5BmNBxAiZ0nIBW7q3qtX6iO8VwRUREREQOpZQrsXrMauSW5N5aOW8e8NFH5rc+rj5QypUAgFHtRmFUu1G4UHAB686uw48pPyK9MB0fn/gYn/z+CR4IfQCTwifh3qB7bd7DReQsGK6IiIiIyOECPAKs75/KVwEtI2o8pp1XO7wS+Qpeuucl7L68G2vPrsXx7OPYk7oHe1L3IKRZCCaGT0R0h2j4uvnW8RUQ2Y/Rn4iIiIiciquLK8a2H4v/jfwfNo7biKmdp6K5ojmu3ryK5ceWY9i6YXh538v4NeNXGEWj1OUSmUkerjQaDcLCwuDq6or+/fsjISGhxv3z8/OhVqsRGBgIlUqF8PBwbNu2zbzdYDDg9ddfR9u2beHm5ob27dvjrbfe4sPqiIiIiBqgDt4dsKD/AsQ9Foe3Br2FHq16oMxYhl2Xd2HmrpkYu3Esvjz5JfJK8qQulUjaYYFr1qxBTEwMVq5cif79+2PZsmUYPnw4kpOT4efnV2V/nU6HYcOGwc/PD+vWrUNwcDAuX76MFi1amPd577338Mknn+Crr75C165d8dtvv2HGjBnw8vLCSy+9VI9XR0RERESO4ubihugO0YjuEI3k3GSsPbsWWy5sQeqNVHx49EP85/h/ENUmCpPCJ6Gvf18Igu2ZConqkqThaunSpZg5cyZmzJgBAFi5ciW2bt2KVatWYf78+VX2X7VqFXJzc3H48GEoFAoAQFhYmNU+hw8fxiOPPILRo0ebt3///fe37REjIiIiooahk08n/PPefyKmTwy2X9yOtWfX4lTOKWy/uB3bL25HW6+2eLTjo3ikwyPwUnlJXS41IZINC9TpdDh69CiioqJuFSOTISoqCvHx8TaP2bx5MwYMGAC1Wg1/f39069YN77zzjtVDfwcOHIi4uDicPXsWAPD777/j0KFDGDlyZN1eEBERERHVK3eFOyaGT8TqMauxZswaPBr+KNxc3HCx4CI++O0DPPjDg1hwcAGOZx/nLSJULyTrubp+/ToMBgP8/f2t1vv7++PMmTM2j7lw4QJ+/vlnPPHEE9i2bRtSUlLw4osvQq/XY9GiRQCA+fPnQ6vVonPnzpDL5TAYDHj77bfxxBNPVFtLaWkpSktLze+1Wq0DrpCIiIiI6ktEywgsGrAIf+v7N2y9sBXrzq7D6dzT2HJhC7Zc2IIOLTrg0fBHMbb9WHgqPaUulxqpBjUVu9FohJ+fHz777DPI5XL06dMHaWlp+OCDD8zh6ocffsC3336L7777Dl27dsWJEycwd+5cBAUFYfr06TbPu2TJEixevLjqhsmTgfLhh5JKSADGjZO6CmpI2GbIXmwzZC+2GbJXPbUZDwCPAZgEESe9g7C2rRY7QguRkp+CdxPexbLD72H4VQ9MutgcPXJVEMB7s5yWs/w7o9fXeldBlKiPVKfTwd3dHevWrUN0dLR5/fTp05Gfn48ff/yxyjH3338/FAoF9uzZY163fft2jBo1CqWlpVAqlQgNDcX8+fOhVqvN+/zrX//CN998U22PmK2eq9DQUBQUFMDT0wn+sjFuHLB5s9RVUEPCNkP2Ypshe7HNkL0kbDM3dDew5cIWrD27FufyzpnXh3uH47HwxzC63Wg0UzaTpDaqgZP8O6PVauHl5VWrbCDZPVdKpRJ9+vRBXFyceZ3RaERcXBwGDBhg85hBgwYhJSUFRuOt5xmcPXsWgYGBUCpNT/guKiqCTGZ9WXK53OqYylQqFTw9Pa0WIiIiImocmiub4/HOj2P92PX4euTXGNd+HFRyFc7mncW/jvwLD659EG8cfgOnrp+SulRq4CR9zlVMTAw+//xzfPXVVzh9+jRmzZqFwsJC8+yBTz31FBYsWGDef9asWcjNzcWcOXNw9uxZbN26Fe+8845VL9XYsWPx9ttvY+vWrbh06RI2btyIpUuXYvz48fV+fURERETkPARBQC+/Xnj7vrcRNykOr0a+inZe7VBcVoz159ZjytYpeOynx7D27FoU6YukLpcaIEnvuZo8eTKuXbuGhQsXIjMzE7169cKOHTvMk1ykpqZa9UKFhoZi586dmDdvHnr06IHg4GDMmTMHr776qnmfFStW4PXXX8eLL76I7OxsBAUF4fnnn8fChQvr/fqIiIiIyDl5qbwwLWIanujyBI5lH8Pas2ux+9JunM49jTfj38S/E/+N0e1GY1L4JHRp2UXqcqmBkOyeK2dmz7jKeuEk402pAWGbIXuxzZC92GbIXg2gzeSX5OPH8z9i3dl1uKS9ZF7f3bc7JoVPwvCw4XBXuEtXYFPjJG2mQdxzRURERETkTFq4tsD0rtOxOXozVg1fhRFhI+Aic8Gf1//EwsML8dDah/D2r2/jbN5ZqUslJ9WgpmInIiIiIqprgiAgMiASkQGRyCnOMfdmXblxBauTV2N18mr0bNUTj3V6DA+3eRiuLq5Sl0xOgj1XRERERETVaOnWEs90ewZbxm/BZ8M+w7A2w+AiuOD3a7/jtUOv4aG1D+G9hPdwIf+C1KWSE2DPFRERERHRbcgEGQYEDcCAoAG4XnwdG89txPpz65F2Mw3fnP4G35z+Br39emNSp0kY1mYYVHKV1CWTBNhzRURERERkB183X8zsMRPbJmzDJ1Gf4MHQByEX5DiWfQwLDi5A1NoofJD4AS4WXJS6VKpn7LmyoNFooNFoYDAYpC6FiIiIiJycTJDhvuD7cF/wfcgqzMLGFFNvVmZhJv6X9D/8L+l/6BfQD5PCJ+Gh1g9BIVdIXTLVMYYrC2q1Gmq12jzdIhERERFRbfh7+OOFni9gZveZ+CX9F6xNXosDaQeQkJmAhMwE+Lj64JEOj2BSx0kI9QyVulyqIwxXREREREQOIpfJMSRkCIaEDEFmYSbWn1uPDWc3ILs4G1+c/AJfnPwC9wbei0nhk/BA6wegkLE3qzFhuCIiIiIiqgMBHgFQ91Lj+R7P48DVA1h7di1+SfsFv2b8il8zfoWvmy/GdxiPieETEdwsWOpyyQEYroiIiIiI6pCLzAUPtn4QD7Z+EGk307D+7HpsTNmI68XX8fmfn+P//vw/DAweiEnhk3B/yP1wkfErekPF/3JERERERPUkuFkwXur9Emb1moV9V/ZhbfJaxGfE45e0X/BL2i/wc/PD+I7jMbHjRAQ2C5S6XLITwxURERERUT1TyBQY1mYYhrUZhivaK1h3bh02pWxCdnE2Pv3jU3z+5+cYHDwYk8In4b7g+yCXyaUumWqB4YqIiIiISEKhnqGY12ceZveajbgrcViXvA5HMo9g/9X92H91PwI8AjCh4wRM6DAB/h7+UpdLNWC4IiIiIiJyAgq5AiPCRmBE2AhcKriEdWfX4cfzPyKzMBP/PfFffPr7pxgSMgSTwidhYNBA9mY5IYYrIiIiIiInE+YVhr9F/g1/7f1X7Lm8B2vPrsXRrKPYe2Uv9l7ZiyCPIEwMn4jxHcajlXsrqculcjKpC3AmGo0GERERiIyMlLoUIiIiIiKo5CqMbjcaX474Ej8+8iOmdZkGT6Un0gvTseL4Cjy87mHE7IvB4fTDMIpGqctt8hiuLKjVaiQlJSExMVHqUoiIiIiIrLRr0Q6v9nsVcZPi8M5976BXq14oE8uw+/JuPL/7eYzZOAaxf8YipzhH6lKbLIYrIiIiIqIGxNXFFWPbj8XXo77GhnEb8Hjnx9Fc0RxXblzBsmPLELUuCn/b/zckZCRAFEWpy21SGK6IiIiIiBqojt4d8Y/+/0DcY3F4c+Cb6OHbA2XGMuy8tBPP7noW4zaNw1envkJeSZ7UpTYJDFdERERERA2cm4sbxnccj29Hf4u1Y9fisfDH4KHwwCXtJfz7t3/jobUP4dUDr+K3zN/Ym1WHGK6IiIiIiBqRzj6d8fqA1/HzpJ+xaMAiRLSMgN6ox7aL2zBj5wxE/xiNr5O+RkFpgdSlNjoMV0REREREjZC7wh2Phj+KNWPWYPWY1ZjYcSLcXNxwoeAC3k98Hw+tfQivHXoNJ7JPsDfLQficKyIiIiKiRq5ry67oOrAr/tb3b9h2cRt+SP4ByXnJ2Hx+Mzaf34wOLTpgUvgkjGk/Bp5KT6nLbbDYc0VERERE1EQ0UzbDY50ew9qxa/HtqG8R3SEarnJXpOSnYEnCEjz0w0N4/ZfX8ce1P9ibdQfYc0VERERE1MQIgoAerXqgR6se+Hvk37Hl/BasPbsWKfkp2JSyCZtSNqGzT2dMCp+E0e1Gw0PhIXXJDQJ7roiIiIiImjBPpSemdpmKDeM24OuRX2Nc+3FQyVU4k3sGb/36Fh744QG8cfgNnMo5JXWpTo/hyoJGo0FERAQiIyOlLoWIiIiIqF4JgoBefr3w9n1vI25SHF6JfAVtvdqiuKwY68+tx5QtUzB5y2SsP7seRfoiqct1SgxXFtRqNZKSkpCYmCh1KUREREREkvFSeeHJiCfx4yM/4ovhX2BU21FQyBRIyknCG/Fv4MG1D+Jfv/4LybnJUpfqVHjPFRERERER2SQIAvoG9EXfgL6YXzIfm89vxtqza3FZexlrktdgTfIa9PDtgUfDH8WItiPg5uImdcmSYs8VERERERHdlrerN6Z3nY6fon/C/z38fxgeNhwuMhf8cf0PLDy8EA/98BDeOfIOzuWdk7pUybDnioiIiIiIak0QBPQP7I/+gf2RU5yDTSmbsO7sOly9eRXfn/ke35/5Hvf43YNJ4ZMwrM0wuLq4Sl1yvWHPFRERERER3ZGWbi3xbPdnsXXCVnw67FMMazMMLoILjmcfxz8O/QMPrX0I7yW8hwsFF6QutV6w54qIiIiIiO6KTJBhYNBADAwaiGtF18y9WemF6fjm9Df45vQ36OPfx9ybpZQrpS65TrDnioiIiIiIHKaVeyvM7DET2yZsw38f+i8eCH0AckGOo1lHMf/gfEStjcKHv32Iy9rLUpfqcAxXRERERETkcHKZHINDBuM/D/4HOyfuxIu9XoS/uz/ySvPw5akvMWbjGDy38znsuLQDeoPe6tj49Hg8Muwq4tPjJar+zjBcERERERFRnfL38MesnrOwc+JOfPzgxxgSMgQCBBzJPIK/7/87otZF4aOjH+HKjSsQRRHLjy3HBU89lh9bDlEUpS6/1njPFRERERER1Qu5TI77Q+/H/aH3I+NmBtafW4+N5zYiuzgbq06uwqqTq9DFpwtO554GAJzKOYXD6YcxKHiQxJXXDnuuLGg0GkRERCAyMlLqUoiIiIiIGrXAZoGYfc9s7Hx0J5Y9sMwcoCqCFWCaKGPF8RUNpveK4cqCWq1GUlISEhMTpS6FiIiIiKhJcJG54KHWD2Fl1Er8a9C/rLYZRaO596ohYLgiIiIiIiLJiaKI7898D5lgHVEaUu8VwxUREREREUnucPphnMo5BaNotFrfkHqvGK6IiIiIiEhSoihixfEVECDY3C5AaBC9VwxXREREREQkKb1Rj8zCTIiwHZ5EiMgszITeqLe53Vk4RbjSaDQICwuDq6sr+vfvj4SEhBr3z8/Ph1qtRmBgIFQqFcLDw7Ft2zbz9rCwMAiCUGVRq9V1fSlERERERGQnpVyJ1WNWY82YNbeWuCCr96vHrIZSrpS61BpJ/pyrNWvWICYmBitXrkT//v2xbNkyDB8+HMnJyfDz86uyv06nw7Bhw+Dn54d169YhODgYly9fRosWLcz7JCYmwmAwmN+fPHkSw4YNw6RJk+rjkoiIiIiIyE4BHgEI8Ai4tSJfBbSMkK6gOyB5uFq6dClmzpyJGTNmAABWrlyJrVu3YtWqVZg/f36V/VetWoXc3FwcPnwYCoUCgKmnylKrVq2s3r/77rto37497r///rq5CCIiIiIiavIkHRao0+lw9OhRREVFmdfJZDJERUUhPj7e5jGbN2/GgAEDoFar4e/vj27duuGdd96x6qmq/BnffPMNnnnmGQiC7RvkiIiIiIiI7pakPVfXr1+HwWCAv7+/1Xp/f3+cOXPG5jEXLlzAzz//jCeeeALbtm1DSkoKXnzxRej1eixatKjK/ps2bUJ+fj6efvrpausoLS1FaWmp+b1Wq72zCyIiIiIioiZL8mGB9jIajfDz88Nnn30GuVyOPn36IC0tDR988IHNcBUbG4uRI0ciKCio2nMuWbIEixcvrrph8mSgfOihpBISgHHjpK6CGhK2GbIX2wzZi22G7MU2Q/Zyljajr/0MhZKGK19fX8jlcmRlZVmtz8rKQkBAgM1jAgMDoVAoIJfLzeu6dOmCzMxM6HQ6KJW3ZhC5fPky9uzZgw0bNtRYx4IFCxATE2N+r9VqERoaCqxZA3h63smlOda4ccDmzVJXQQ0J2wzZi22G7MU2Q/ZimyF7OUub0WoBL69a7SrpPVdKpRJ9+vRBXFyceZ3RaERcXBwGDBhg85hBgwYhJSUFRuOtJzefPXsWgYGBVsEKAL744gv4+flh9OjRNdahUqng6elptRAREREREdlD8udcxcTE4PPPP8dXX32F06dPY9asWSgsLDTPHvjUU09hwYIF5v1nzZqF3NxczJkzB2fPnsXWrVvxzjvvVHmGldFoxBdffIHp06fDxaXBjX4kIiIiIqIGRvLUMXnyZFy7dg0LFy5EZmYmevXqhR07dpgnuUhNTYVMdisDhoaGYufOnZg3bx569OiB4OBgzJkzB6+++qrVeffs2YPU1FQ888wz9Xo9RERERETUNEkergBg9uzZmD17ts1t+/btq7JuwIAB+PXXX2s858MPPwxRFB1RHhERERER0W1JPiyQiIiIiIioMWC4IiIiIiIicgCGKyIiIiIiIgdguCIiIiIiInIAp5jQwlloNBpoNBqUlZUBMD1M2Cno9aaHlxHVFtsM2YtthuzFNkP2YpshezlJm6nIBLWZLE8QOaVeFVevXkVoaKjUZRARERERkZO4cuUKQkJCatyH4coGo9GI9PR0NG/eHIIgVNkeGRmJxMTEeqlFq9UiNDQUV65cgaenZ718JlC/18jPcywp2kx9/z6l+MzG/HlsM/w8ezWFNsM26lhsM43jM5tqmxFFETdu3EBQUJDV83dt4bBAG2QyWY2pVC6X12vQAQBPT896/cz6vkZ+nuPVZ5uR4voa+39DtpmG/5mN/fOAxt1m2EbrBttMw/7MptxmvLy8anUOTmhxB9RqtdQl1Ln6vkZ+XsMmxfU19v+GbDMN/zMb++fVt6bw+2wK11ifmsLvsylcY31yxPVxWKCT02q18PLyQkFBQb3/pYAaJrYZshfbDNmLbYbsxTZD9mqobYY9V05OpVJh0aJFUKlUUpdCDQTbDNmLbYbsxTZD9mKbIXs11DbDnisiIiIiIiIHYM8VERERERGRAzBcEREREREROQDDFRERERERkQMwXBERERERETkAw1U9O3DgAMaOHYugoCAIgoBNmzbd9ph9+/ahd+/eUKlU6NChA7788ssq+2g0GoSFhcHV1RX9+/dHQkKC44unelcX7WXJkiWIjIxE8+bN4efnh+joaCQnJ9fNBVC9q6t/Yyq8++67EAQBc+fOdVjNJK26ajNpaWmYNm0aWrZsCTc3N3Tv3h2//fab4y+A6l1dtBmDwYDXX38dbdu2hZubG9q3b4+33noLnHetcbC3zWRkZGDq1KkIDw+HTCar9v9z1q5di86dO8PV1RXdu3fHtm3bHF+8nRiu6llhYSF69uwJjUZTq/0vXryI0aNH44EHHsCJEycwd+5cPPfcc9i5c6d5nzVr1iAmJgaLFi3CsWPH0LNnTwwfPhzZ2dl1dRlUT+qivezfvx9qtRq//vordu/eDb1ej4cffhiFhYV1dRlUj+qizVRITEzEp59+ih49eji6bJJQXbSZvLw8DBo0CAqFAtu3b0dSUhI+/PBDeHt719VlUD2qizbz3nvv4ZNPPsHHH3+M06dP47333sP777+PFStW1NVlUD2yt82UlpaiVatW+Oc//4mePXva3Ofw4cN4/PHH8eyzz+L48eOIjo5GdHQ0Tp486cjS7SeSZACIGzdurHGfV155RezatavVusmTJ4vDhw83v+/Xr5+oVqvN7w0GgxgUFCQuWbLEofWStBzVXirLzs4WAYj79+93RJnkRBzZZm7cuCF27NhR3L17t3j//feLc+bMcXC15Awc1WZeffVV8b777quLEsnJOKrNjB49WnzmmWes9pkwYYL4xBNPOKxWcg61aTOWqvv/nMcee0wcPXq01br+/fuLzz///F1WeHfYc+Xk4uPjERUVZbVu+PDhiI+PBwDodDocPXrUah+ZTIaoqCjzPtR03K692FJQUAAA8PHxqdPayDnVts2o1WqMHj26yr7U9NSmzWzevBl9+/bFpEmT4Ofnh3vuuQeff/55fZdKTqI2bWbgwIGIi4vD2bNnAQC///47Dh06hJEjR9ZrrdRw3Ml3nvrgIumn021lZmbC39/fap2/vz+0Wi2Ki4uRl5cHg8Fgc58zZ87UZ6nkBG7XXtzc3Ky2GY1GzJ07F4MGDUK3bt3qs1RyErVpM6tXr8axY8eQmJgoUZXkTGrTZi5cuIBPPvkEMTEx+Mc//oHExES89NJLUCqVmD59ukSVk1Rq02bmz58PrVaLzp07Qy6Xw2Aw4O2338YTTzwhUdXk7KprV5mZmRJVZMJwRdSEqdVqnDx5EocOHZK6FHJSV65cwZw5c7B79264urpKXQ41EEajEX379sU777wDALjnnntw8uRJrFy5kuGKbPrhhx/w7bff4rvvvkPXrl3N92YFBQWxzVCDwnDl5AICApCVlWW1LisrC56ennBzc4NcLodcLre5T0BAQH2WSk7gdu3F0uzZs7FlyxYcOHAAISEh9VkmOZHbtZmjR48iOzsbvXv3Nm83GAw4cOAAPv74Y5SWlkIul9d32SSh2vw7ExgYiIiICKt9unTpgvXr19dbneQ8atNm/v73v2P+/PmYMmUKAKB79+64fPkylixZwnBFNlXXrqT+/st7rpzcgAEDEBcXZ7Vu9+7dGDBgAABAqVSiT58+VvsYjUbExcWZ96Gm43btBQBEUcTs2bOxceNG/Pzzz2jbtm19l0lO5HZt5qGHHsKff/6JEydOmJe+ffviiSeewIkTJxismqDa/DszaNCgKo94OHv2LNq0aVMvNZJzqU2bKSoqgkxm/bVULpfDaDTWS43U8NSmXUlC0uk0mqAbN26Ix48fF48fPy4CEJcuXSoeP35cvHz5siiKojh//nzxySefNO9/4cIF0d3dXfz73/8unj59WtRoNKJcLhd37Nhh3mf16tWiSqUSv/zySzEpKUn8y1/+IrZo0ULMzMys9+sjx6qL9jJr1izRy8tL3Ldvn5iRkWFeioqK6v36yPHqos1UxtkCG5e6aDMJCQmii4uL+Pbbb4vnzp0Tv/32W9Hd3V385ptv6v36yPHqos1Mnz5dDA4OFrds2SJevHhR3LBhg+jr6yu+8sor9X595Hj2thlRFM379+nTR5w6dap4/Phx8dSpU+btv/zyi+ji4iL++9//Fk+fPi0uWrRIVCgU4p9//lmv11YZw1U927t3rwigyjJ9+nRRFE3/uNx///1VjunVq5eoVCrFdu3aiV988UWV865YsUJs3bq1qFQqxX79+om//vpr3V8M1bm6aC+2zgfAZruihqeu/o2xxHDVuNRVm/npp5/Ebt26iSqVSuzcubP42Wef1f3FUL2oizaj1WrFOXPmiK1btxZdXV3Fdu3aia+99ppYWlpaPxdFdepO2oyt/du0aWO1zw8//CCGh4eLSqVS7Nq1q7h169b6uaAaCKLIR18TERERERHdLd5zRURERERE5AAMV0RERERERA7AcEVEREREROQADFdEREREREQOwHBFRERERETkAAxXREREREREDsBwRURERERE5AAMV0REjdSXX36JFi1a3HY/QRCwadOmOq/HGQwdOhRz586Vugwql5ycjICAANy4caNeP1en0yEsLAy//fZbvX4uETV+DFdERHfo6aefhiAIEAQBCoUCbdu2xSuvvIKSkpJ6ryUsLAzLli2zWjd58mScPXvW/P6NN95Ar169qhybkZGBkSNH1ml9X375pfl3JZPJEBISghkzZiA7O7tOP/d2bP3e7oRlW1AqlejQoQPefPNNlJWV3X2REqmP0L1gwQL89a9/RfPmzQEA+/btM/8eBUFAq1atMGrUKPz5559Wx93u9135PP7+/pg4cSIuXLgAAFAqlfjb3/6GV199tU6vj4iaHoYrIqK7MGLECGRkZODChQv46KOP8Omnn2LRokVSlwUAcHNzg5+f3233CwgIgEqlqvN6PD09kZGRgatXr+Lzzz/H9u3b8eSTT9b559aXirZw7tw5vPzyy3jjjTfwwQcf3NG5DAYDjEajgyuUhl6vt7k+NTUVW7ZswdNPP11lW3JyMjIyMrBz506UlpZi9OjR0Ol0VvvU5vednJyM9PR0rF27FqdOncLYsWNhMBgAAE888QQOHTqEU6dOOeZCiYjAcEVEdFdUKhUCAgIQGhqK6OhoREVFYffu3ebtRqMRS5YsQdu2beHm5oaePXti3bp15u0Vf2HfunUrevToAVdXV9x77704efKk1eccOnQIgwcPhpubG0JDQ/HSSy+hsLAQgGmo2+XL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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plot_metrics_vs_rpp(\n", - " metrics_df,\n", - " models,\n", - " markers,\n", - " [\"comet\"],\n", - " [\"COMET\"],\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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g95NQEAAdu3ahZCQkBK/to+PD9zc3PDll1+W+LWJiCoKPrNJRET0kszMTCQmJuL777/H6NGjmWgWo9GjR+PJkyd4+vRpkd5h+r5ycnLg6uqKSZMmldg1iYgqIo5sEhFJiCObpc+sWbMwZ84ctG7dGjt37oShoaHUIREREZVJTDaJiIiIiIhI47hAEBEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomIiIiIiEjjmGwSERERERGRxjHZJCIiIiIiIo1jsklEREREREQax2STiIiIiIiINI7JJhEREREREWkck00iIiIiIiLSOCabREREREREpHFMNomI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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plot_metrics_vs_rpp(\n", - " metrics_df,\n", - " models,\n", - " markers,\n", - " [\"comet\", \"meteor\"],\n", - " [\"COMET\", \"METEOR\"],\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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iIj0YuJIREREREREejFxJCIiIiIiIr2YOBIREREREZFeTByJiIiIiIhILyaOREREREREpBcTRyIiIiIiItKLiSMRERERERHpxcSRiIiIiIiI9GLiSERERERERHoxcSQiIiIiIiK9mDgSERERERGRXkwciYiIiIiISC8mjkRERERERKQXE0ciIiIiIiLSi4kjERERERER6cXEkYiIiIiIiPRi4khERERERER6MXEkIiIiIiIivZg4EhERERERkV5MHImIiIiIiEgvJo5ERERERESkFxNHIiIiIiIi0ouJIxEREREREenFxJGIiIiIiIj0YuJIREREREREejFxJCIiIiIiIr2YOBIREREREZFeTByJiIiIiIhILyaOREREREREpBcTRyIiIiIiItKLiSMRERERERHpxcSRiIiIiIiI9GLiSERERERERHoxcSQiIiIiIiK9mDgSERERERGRXkwciYiIiIiISC8mjkRERERERKQXE0ciIiIiIiLSi4kjERERERER6cXEkYiIiIiIiPRi4khERERERER6MXEkIiIiIiIivZg4EhERERERkV5MHImIiIiIiEgvJo5ERERERESkFxNHIiIiIiIi0ouJIxEREREREenFxJGIiIiIiIj0YuJIREREREREejFxJCIiIiIiIr2YOBIREREREZFeTByJiIiIiIhILyaOREREREREpBcTRyIiIiIiItKLiSMRERERERHpxcSRiIiIiIiI9GLiSERERERERHoxcSQiIiIiIiK9mDgSERERERGRXkwciYiIiIiISC8mjkRERERERKQXE0ciIiIiIiLSi4kjERERERER6cXEkYiIiIiIiPRi4khERERERER6MXEkIiIiIiIivZg4EhERERERkV5MHImIiIiIiEgvI0MXgKi6USqVKCgoMHQxiIiIqJoxNjaGTCYzdDGIDIKJI9FjgiAgISEBqamphi4KERERVVM2NjZwcXGBRCIxdFGIqhQTR6LHipJGJycnmJmZ8R8EIiIiEgmCgOzsbCQlJQEAXF1dDVwioqrFxJEI6u6pRUmjvb29oYtDRERE1ZCpqSkAICkpCU5OTuy2Si8VDo5DBIjPNJqZmRm4JERERFSdFX1X4HgI9LJh4khUArunEhERkT78rkAvKyaOREREREREpBcTR6KX0IEDByCRSKr9CLKXL19GixYtYGJiggYN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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plot_metrics_vs_rpp(\n", - " metrics_df,\n", - " models,\n", - " markers,\n", - " [\"comet\", \"total_repetitions\"],\n", - " [\"COMET\", \"Mean Total Repetitions\"],\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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/2LXrl0oimLxHm7cuJHbb7+d2bNnc+TIET7++GMWL15sTth27txp3u6UlBTz9MVeV2XevHlce+21HDx4kLvuusvq/tm4cSP9+vWrcx/m5eWZk7San6uL7W9bzwMWMQMGDGDjxo11LlcIIcR5ihBCCGXmzJmKRqNRnJycFL1erwCKWq1WYmNjFUVRlNLSUsXR0VHZsmWLxevuvvtu5aabblIURVHWrl2rAMq3335rfj4rK0txcHBQli5dao6/9957LZaxceNGRa1WKyUlJYqiKEpISIiyYMECi5hFixYpbm5u5um5c+cqMTExtbYDUFasWKEoiqJ88sknioeHh1JYWGh+/ueff1bUarWSmppq3u6QkBClsrLSHHPdddcpN9xwg819dWFZEhISlIiICKVfv36KoihK586dla+//triNS+++KIyaNAgRVEUJSkpSQGUzz77zPz84cOHFUCJi4uzud5JkyYpjz76qHl6xIgRyuzZs83T1vbb9u3bFY1GoyQnJyuKoihpaWmKnZ2dsm7dOpvrmTlzpnLNNdcoiqIoRqNRWb16taLX65XHHnvMavz333+veHl5macXLVqkAMq+fftsrkNRFMVgMCguLi7KTz/9ZJ4HKM8884x5euvWrQqgfP755+Z533zzjWJvb2+eHjNmjPLKK69YLPt///ufEhAQYLHcqnrR0NfNmTOnzu1QFEWJiYlRXnjhBYt5VZ8HJycnxcnJSQEUQJkyZYpF3MX2d9VycnJyFEVRlOTkZGXw4MFKhw4dlLKyMvNy3n33XSU0NPSiZRVCCKEodi2ReAohRGs0atQoPvzwQ4qKiliwYAF2dnZMnz4dgOPHj1NcXMy4ceMsXlNeXk7v3r0t5g0aNMj8v6enJ127diUuLg6A/fv3c+DAAb766itzjKIoGI1GkpKS6NatW6NtT1xcHDExMTg5OZnnDRkyBKPRSHx8PH5+fgBERUWh0WjMMQEBAbUG77hQXl4ezs7OGI1GSktLGTp0KJ999hlFRUWcOHGCu+++m3vuucccX1lZiZubm8UyevbsabFOgPT0dCIjIzEYDLzyyit89913nDt3jvLycsrKynB0dGzQPhgwYABRUVEsWbKEp556ii+//JKQkBCGDx9e5+tWrVqFs7MzFRUVGI1Gbr75ZubNmwfAn3/+yfz58zl69Cj5+flUVlZSWlpKcXGxuXw6nc5i+wDS0tJ45plnWLduHenp6RgMBoqLizl9+rTN/VL1HkVHR1vMKy0tJT8/H1dXV/bv38/mzZstWvAMBkOtMl2ovq+7WAsfQElJCfb29laf27hxI46Ojmzbto1XXnmFjz76qFZMXfu7SlBQEIqiUFxcTExMDMuWLbNoUXRwcKC4uPiiZRVCCAGSBAohxHlOTk506dIFgC+++IKYmBg+//xz7r77bvM1Xz///HOt654aMhBLYWEh9913Hw899FCt5zp27Pg3Sn/ptFqtxbRKpbroQCYuLi7s2bMHtVpNQECAuXteWloaAJ9++ikDBw60eE3NRPPC9VZd+1i13jfeeIN3332Xd955x3z93Zw5c+rsImjLP/7xDxYuXMhTTz3FokWLuPPOO83rs6XqhIBOpyMwMBA7O9PX5cmTJ7n66qu5//77efnll/H09GTTpk3cfffdlJeXmxMnBweHWuuYOXMmWVlZvPvuu4SEhKDX6xk0aFCtbbK2X+raV4WFhTz//PNMmzat1nbYSswa8rqaJxFs8fb2Jicnx+pzYWFhuLu707VrV9LT07nhhhvYsGGDRYyt/V3Txo0bcXV1xdfX12pX3uzsbHx8fC5aViGEEJIECiGEVWq1mn//+9888sgj3HzzzRYDfIwYMaLO127bts2c0OXk5JCQkGBu4evTpw9HjhwxJ5vW6HQ686iHfyemW7duLF68mKKiIvMP+c2bN6NWq+natWudr70YtVptdRv8/PwIDAwkMTGRW2655ZKXv3nzZq655hpuvfVWwJTwJCQk0L17d5uvsbVPbr31Vp544gnee+89jhw5wsyZMy+6/ponBGravXs3RqORt956C7XadFn9d999V+9t+uCDD5g4cSIAZ86cITMzs16vrUufPn2Ij4+vs05ptdpa+6Y+r6uv3r17c+TIkYvGzZo1i/nz57NixQquvfZa83xb+7umqmTSlkOHDtVqlRdCCGGdDAwjhBA2XHfddWg0GhYuXIiLiwuPPfYYDz/8MEuWLOHEiRPs2bOH999/v9aAJy+88AJr1qzh0KFD3HHHHXh7ezN16lQAnnzySbZs2cIDDzzAvn37OHbsGD/++KPFQB+hoaFs2LCBc+fO2UwSQkNDSUpKYt++fWRmZlJWVlYr5pZbbsHe3p6ZM2dy6NAh1q5dy4MPPshtt91m7mbYFJ5//nnmz5/Pe++9R0JCAgcPHmTRokW8/fbb9V5GeHg4q1evZsuWLcTFxXHfffeZWxltsbXfPDw8mDZtGo8//jhXXnklQUFBl7xtXbp0oaKigvfff5/ExET+97//We3eaGub/ve//xEXF8f27du55ZZbzC2of8dzzz3Hf//7X55//nkOHz5MXFwc3377Lc8884w5JjQ0lDVr1pCammpusavP6+pr/PjxbN269aInJhwdHbnnnnuYO3cuiqI0eD112bhxI1deeWWjLlMIIS5XkgQKIYQNdnZ2PPDAA7z++usUFRXx4osv8uyzzzJ//ny6devGVVddxc8//0xYWJjF61599VVmz55N3759SU1N5aeffjJfu9SzZ0/Wr19PQkICw4YNo3fv3jz33HMEBgaaX//CCy9w8uRJOnfubLN72/Tp07nqqqsYNWoUPj4+Vm+f4OjoyO+//052djb9+/dnxowZjBkzhv/85z+NuJdq+8c//sFnn33GokWLiI6OZsSIESxevLjWfqrLM888Q58+fRg/fjwjR47E39/fnEjbUtd+q+quaWt0y/qKiYnh7bff5rXXXqNHjx589dVXzJ8/v16v/fzzz8nJyaFPnz7cdtttPPTQQ/W69+PFjB8/nlWrVvHHH3/Qv39/rrjiChYsWEBISIg55q233mL16tUEBwebW8vq87r6mjBhAnZ2dvz5558XjX3ggQeIi4vj+++/b/B6bNm6dSt5eXnMmDGj0ZYphBCXM5XS2KfihBCinVq3bh2jRo0iJyenzm5rovn973//4+GHHyY5OfmitycQl2bhwoWsXLmS33//vdnXfcMNNxATE8O///3vZl+3EEK0RXJNoBBCiMtWcXExKSkpvPrqq9x3332SADah++67j9zcXAoKChp0D8a/q7y8nOjoaB5++OFmW6cQQrR10hIohBCNRFoCW5958+bx8ssvM3z4cH788UecnZ1bukhCCCFEi5MkUAghhBBCCCHaERkYRgghhBBCCCHaEUkChRBCCCGEEKIdkSRQCCGEEEIIIdoRSQKFEEIIIYQQoh2RJFAIIYQQQggh2hFJAoUQQgghhBCiHZEkUAghhBBCCCHaEUkChRBCCCGEEKIdkSRQCCGEEEIIIdoRSQKFEEIIIYQQoh2RJFAIIYQQQggh2hFJAoUQQgghhBCiHZEkUAghhBBCCCHaEUkChRBCCCGE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vr6+vP322za/3y5kMBi46667iIyM5PTp00D9PsOfffYZ1157LY6OjoSHh7Ny5Urz8zk5Odxyyy34+Pjg4OBAeHi4xfeDEKLpSRLYhimKQnFFcYMea0+v5XDWYQAOZx1m7em1DV5GQxPHJUuW4O3tzY4dO3jwwQe5//77ue666xg8eDB79uzhyiuv5LbbbqO4uNjq6/ft28eYMWPo3r07W7duZdOmTUyePBmDwWCxDp1Ox+bNm/noo484d+4cEydOpH///uzfv58PP/yQzz//nJdeegkwnSW96aabuOuuu8xnfKdNm2betnfffZe33nqLN998kwMHDjB+/HimTJli/oGZkpJCVFQUjz76KCkpKaxcubLW2daaZ1pXrlzJNddcY3MfVd1/p+bZ/Lfeeot+/fqxd+9e/vnPf3L//fdbJEQNdfz4cX777TdGjBhx0dhZs2bh7e3NgAED+OKLL+r1nv/1118kJyezYcMG3n77bebOncvVV1+Nh4cH27dv5//+7/+47777ap3pv9DTTz/NW2+9xa5du7Czs+Ouu+6q9zbaUte+fO+991i5ciXfffcd8fHxfPXVV+YfXDt37gSqW0arpsG0P5ctW8by5cvrfe2M0Wg0dy/78ssvOXLkCK+++ioajYbBgwfXWYfqKywsjP/7v//jX//6F0ajscGvr2nBggUMGTKEvXv3MmnSJG677TZuv/12br31Vvbs2UPnzp25/fbbLepHcXExL7/8Mv/973/ZvHkzubm5FsnOxo0buf3225k9ezZHjhzh448/ZvHixbUSvXnz5nHttddy8OBBm3XgjjvuYNeuXaxcuZKtW7eiKAoTJ06koqLC4gTCsmXLSElJYfDgwTa39fPPP+emm25Cq9Vy00038fnnn9eKOXHiBD/88AOrVq1i1apVrF+/nldffRWo+5gSFRWFl5cX69evN++DmtNgSkKrkojc3FxGjx5N79692bVrF7/99htpaWlcf/31FuW58Li3bNkyFixYwMcff8yxY8f44YcfiI6Otrq9bm5u9OrVy5xAHDx4EJVKxd69eyksLDSXydrxIjg4mGXLlgGmbucpKSm8++67FuVycnJi+/btvP7667zwwgusXr3a5r6vctddd7F48WLz9BdffMEtt9yCTqeziCsoKGDmzJls2rSJbdu2ER4ezsSJE80JedVJjttuu428vDz2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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plot_metrics_vs_rpp(\n", - " metrics_df,\n", - " models,\n", - " markers,\n", - " [\"num_max_output_tokens\", \"total_repetitions\"],\n", - " [\"Number of Answers with Max Output Tokens\", \"Mean Total Repetitions\"],\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1IAAAKkCAYAAAAKmg63AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/TGe4hAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3hUZd7G8e9MkknvpNIVlI6oiICKCqhYsO0uKiiWFVeDCqgoShFp6q4IYhTbiq5YV+yrvghI7x2CIEhPo4RMepk57x+RkSEJZDDJmST357rmInPqfYaHkF+e5zzHYhiGgYiIiIiIiFSZ1ewAIiIiIiIidY0KKREREREREQ+pkBIREREREfGQCikREREREREPqZASERERERHxkAopERERERERD6mQEhERERER8ZAKKREREREREQ/5mh3AGzidTlJTUwkNDcVisZgdR0RERERETGIYBjk5OSQmJmK1Vt7vpEIKSE1NpWnTpmbHEBERERERL7F//36aNGlS6XoVUkBoaChQ9mGFhYWZnAYYMAA++cTsFFKXqM2Ip9RmxFNqM+IptRnxhBe1F7vdTtOmTV01QmVUSIFrOF9YWJh3FFJ+fuANOaTuUJsRT6nNiKfUZsRTajPiCS9sL6e75UeTTYiIiIiIiHioQRdSycnJtGvXjq5du5odRURERERE6pAGXUglJSWRkpLC6tWrzY4iIiIiIiJ1SIMupERERERERM6ECikREREREREPqZASERERERHxkAopERERERERD6mQEhERERER8ZAKKREREREREQ+pkBIREREREfGQCikREREREREPqZASERERERHxkAopERERERERD/maHUCgJDWV0qysPxYUFsLWra63vpGR+CUmmpBMREREREQqokLKZCWpqey6ph9GcbH7ilv/4vrSYrNx9g/fq5gSEREREfESGtpnstKsrPJF1EmM4mL3HisRERERETFVgy6kkpOTadeuHV27djU7ioiIiIiI1CENupBKSkoiJSWF1atXmx1FRERERETqkAZdSImIiIiIiJwJFVIiIiIiIiIeUiElIiIiIiLiIRVSIiIiIiIiHlIhZTLfyEgsNtspt7H4+eEbGVlLiURERERE5HT0QF6T+SUmcvYP37s/J2r4cJj6MunPPUfhpk3Y2rTBNz7evJAiIiIiIuJGPVJewC8xkcD27f94BQQQ2KE9TV6eijUoiKLNm8n68COzY4qIiIiIyO9USHkxv8aNiXn8MQAyp06l+MABkxOJiIiIiAiYXEgtWrSIG264gcTERCwWC19++WWl2/7jH//AYrEwbdo0t+VHjx5l4MCBhIWFERERwX333Udubm7NBq9FkbfdRlDXrhj5+aSNHoNhGGZHEhERERFp8EwtpPLy8ujcuTPJycmn3O6LL75gxYoVJCYmlls3cOBAtm7dyty5c/n2229ZtGgRQ4YMqanItc5itZIwcQKWgADyV6zg2KefmR1JRERERKTBM7WQ6tevHxMnTuTmm2+udJuDBw/y8MMPM3v2bPz8/NzWbdu2jR9++IG3336bbt26cckllzBjxgw+/vhjUlNTazp+rbE1b07s8GEAZL74IiX16NpEREREROoir75Hyul0cuedd/LEE0/Qvn37cuuXL19OREQEF154oWtZnz59sFqtrFy5stLjFhUVYbfb3V7eLnLQIAK7dMGZl0fauGc1xE9ERERExERePf35Cy+8gK+vL4888kiF69PT04mNjXVb5uvrS1RUFOnp6ZUed8qUKYwfP778igED4KReL1OsWgX9+7stsgAJxcXstljIW7yY7MuvICI8zJx84n0qaDMip6Q2I55SmxFPqc2IJ7ypvZSUVGkzry2k1q5dy/Tp01m3bh0Wi6Vajz1q1ChGjBjhem+322natCl88gmEeUFx0r8/fP11ucX+QMzbb5P5r5fIKCgg+NNP8YuLLb+/NDyVtBmRSqnNiKfUZsRTajPiCW9qL3Y7hIefdjOvHdq3ePFiMjMzadasGb6+vvj6+rJ3714ee+wxWrRoAUB8fDyZmZlu+5WWlnL06FHiT/EAW39/f8LCwtxedUXU3XcT0LEjTrud9PHjNcRPRERERMQEXltI3XnnnWzatIkNGza4XomJiTzxxBP8+OOPAHTv3p1jx46xdu1a137z58/H6XTSrVs3s6LXKIuvLwmTJoKfH7nz52P/7n9mRxIRERERaXBMHdqXm5vLzp07Xe93797Nhg0biIqKolmzZkRHR7tt7+fnR3x8POeeey4Abdu25ZprruH+++9n5syZlJSUMHToUG677bYKp0qvLwLOOYeYhx7k0PRXyJg4keCLu+HbqJHZsUREREREGgxTe6TWrFlDly5d6NKlCwAjRoygS5cujB07tsrHmD17Nm3atKF3795ce+21XHLJJbz55ps1FdlrRP/97/i3bYvj2DHSJ0w0O46IiIiISINiao/U5Zdf7tE9Pnv27Cm3LCoqig8//LAaU9UNFj8/EidPYvdf/0bOjz9i/+FHwq652uxYIiIiIiINgtfeIyWnF9C2LdH3/x2A9AkTKM3KMjmRiIiIiEjDoEKqjmv04IP4t26F48gRMiZPMTuOiIiIiEiDoEKqjrPabCRMngxWK/ZvviFn/gKzI4mIiIiI1HsqpOqBwI4dib73HgDSx43DkZ1tciIRERERkfpNhVQ90WjoUGwtW1J66BAZL7xodhwRERERkXpNhVQ9YQ0IIGHSJLBYyJ4zh9zFi82OJCIiIiJSb6mQqkeCzu9C1F13ApA2dhyO3FyTE4mIiIiI1E8qpOqZmEcfxa9pU0rT0sj857/MjiMiIiIiUi816EIqOTmZdu3a0bVrV7OjVBtrUBAJEycCcOyTT8hbscLkRCIiIiIi9U+DLqSSkpJISUlh9erVZkepVsHdLiLyjtsBSBs9BmdensmJRERERETqlwZdSNVnMSMewy8xkZIDB8h8eZrZcURERERE6hUVUvWUT0gw8ROeAyDrgw/IX7PG5EQiIiIiIvWHCql6LKRnT8L/cisAac+MxllQYHIiEREREZH6QYVUPRf35JP4xsVRvHcvh2a8anYcEREREZF6QYVUPecTGkr8+GcBODprFgUbN5obSERERESkHlAh1QCEXn454Tf2B6eT1KefwVlUZHYkEREREZE6TYVUAxE3ahQ+jRpRvGsXh1973ew4IiIiIiJ1mgqpBsInIoL4cWMBOPL22xRs2WpyIhERERGRukuFVAMS1rcvYdf2A4eDtGeewSguNjuSiIiIiEidpEKqgYkbPRqfyEiKtm/n8JtvmR1HRERERKROUiHVwPhGRRE/ZjQAh2fOpHD7dpMTiYiIiIjUPSqkGqDQfv0I7dsHSktJG/U0Rmmp2ZFEREREROqUBl1IJScn065dO7p27Wp2lFplsViIHzsWa3g4hSkpHHnn32ZHEhERERGpUxp0IZWUlERKSgqrV682O0qt842JIf7pUQAcfvVVinbtMjmRiIiIiEjd0aALqYYurH9/gntdhlFSQtrTz2A4HGZHEhERERGpE1RINWAWi4WE8eOxhoRQsHEjR9973+xIIiIiIiJ1ggqpBs4vPp64p54E4ND06RTv2WNuIBERERGROkCFlBB+660E9+iBUVRE6ujRGE6n2ZFERERERLyaCikpG+I34TmsQUEUrFlL1ocfmR1JRERERMSrqZASAPwaNybm8ccAyJw6leIDB0xOJCIiIiLivVRIiUvkbbcR1LUrRn4+aaPHYBiG2ZFERERERLySCilxsVitJEycgCUggPwVKzj26WdmRxIRERER8UoqpMSNrXlzYocPAyDzxRcpSU01N5CIiIiIiBdSISXlRA4aRGCXLjjz8kgb96yG+ImIiIiInESFlJRj8fEhYdJELDYbeYsXk/3Fl2ZHEhERERHxKiqkpEL+Z51FzCMPA5Dx/POUZGSanEhERERExHuokJJKRd19NwEdO+K020kfP15D/EREREREftegC6nk5GTatWtH165dzY7ilSy+viRMmgh+fuTOn4/92+/MjiQiIiIi4hUadCGVlJRESkoKq1evNjuK1wo45xxiHnoQgIyJEyk9fNjkRCIiIiIi5mvQhZRUTfTf/45/27Y4srNJnzDR7DgiIiIiIqZTISWnZfHzI3HyJPD1JefHH7H/8KPZkURERERETKVCSqokoG1bou//OwDpEyZQmpVlciIREREREfOokJIqa/Tgg/i3boXjyBEyJk8xO46IiIiIiGlUSEmVWW02EiZPBqsV+zffkDN/gdmRRERERERMoUJKPBLYsSPR994DQPq4cTiys01OJCIiIiJS+1RIiccaDR2KrWVLSg8dIuOFF82OIyIiIiJS61RIicesAQEkTJoEFgvZc+aQu3ix2ZFERERERGqVqYXUokWLuOGGG0hMTMRisfDll1+61pWUlPDkk0/SsWNHgoODSUxM5K677iI1NdXtGEePHmXgwIGEhYURERHBfffdR25ubi1fScMTdH4Xou66E4C0seNw6DMXERERkQbE1EIqLy+Pzp07k5ycXG5dfn4+69atY8yYMaxbt445c+awfft2+vfv77bdwIED2bp1K3PnzuXbb79l0aJFDBkypLYuoUGLefRR/Jo2pTQtjcx//svsOCIiIiIitcbXzJP369ePfv36VbguPDycuXPnui179dVXueiii9i3bx/NmjVj27Zt/PDDD6xevZoLL7wQgBkzZnDttdfyr3/9i8TExBq/hobMGhREwsSJ7Bs8mGOffEJYv2sIvvhis2OJiIiIiNS4OnWPVHZ2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R1SpkFqwYEFN5xCRKvKNjMRis2EUF1e6jcVmwzcyshZTiYiIiDQsVX4gr4h4B7/ERM7+4Xv350QNHw4vv+x66xsZqYfxioiIiNSgMyqk1qxZw6effsq+ffsoPum34nPmzKmWYCJSOb/ERPdCKSAA2rc3L5CIiIhIA+PxrH0ff/wxPXr0YNu2bXzxxReUlJSwdetW5s+fr/uMRERERESkQfC4kJo8eTIvv/wy33zzDTabjenTp/PLL7/wt7/9jWbNmtVERhEREREREa/icSG1a9currvuOgBsNht5eXlYLBaGDx/Om2++We0BRUREREREvI3HhVRkZCQ5OTkANG7cmC1btgBw7Ngx8vPzqzediIiIiIiIF/J4sonLLruMuXPn0rFjR/7617/y6KOPMn/+fObOnUvv3r1rIqOIiIiIiIhX8biQevXVVyksLATgmWeewc/Pj2XLlnHrrbcyevToag8oIiIiIiLibTwupKKiolxfW61WnnrqqWoNJCIiIiIi4u08vkfKx8eHzMzMcsuPHDmCj49PtYQSERERERHxZh4XUoZhVLi8qKgIm832pwOJiIiIiIh4uyoP7XvllVcAsFgsvP3224SEhLjWORwOFi1aRJs2bao/oYiIiIiIiJepciH18ssvA2U9UjNnznQbxmez2WjRogUzZ86s/oQ1KDk5meTkZBwOh9lRRERERESkDqlyIbV7924ArrjiCubMmUNkZGSNhaotSUlJJCUlYbfbCQ8PNzuOiIiIiIjUER7P2rdgwQLX18fvl7JYLNWXSERERERExMt5PNkEwPvvv0/Hjh0JDAwkMDCQTp068Z///Ke6s4mIiIiIiHglj3ukpk6dypgxYxg6dCg9e/YEYMmSJfzjH//g8OHDDB8+vNpDioiIiIiIeBOPC6kZM2bw+uuvc9ddd7mW9e/fn/bt2/Pss8+qkBIRERERkXrP46F9aWlp9OjRo9zyHj16kJaWVi2hREREREREvJnHhVSrVq349NNPyy3/5JNPaN26dbWEEhERERER8WZVHtp35ZVXMmfOHMaPH8+AAQNYtGiR6x6ppUuXMm/evAoLLBERERERkfqmyj1SP//8M8XFxdx6662sXLmSRo0a8eWXX/Lll1/SqFEjVq1axc0331yTWUVERERERLzCGU1/fsEFF/DBBx+wdu1a1q5dywcffECXLl2qOxsABw8eZNCgQURHRxMYGEjHjh1Zs2aNa71hGIwdO5aEhAQCAwPp06cPv/76a41kERERERERAQ9n7UtJSSE9Pf2U23Tq1OlPBTpRVlYWPXv25IorruD7778nJiaGX3/9lcjISNc2L774Iq+88grvvfceLVu2ZMyYMVx99dWkpKQQEBBQbVlERERERESO86iQ6t27N4ZhVLreYrHgcDj+dKjjXnjhBZo2bcq7777rWtayZUvX14ZhMG3aNEaPHs2NN94IlD0sOC4uji+//JLbbrut2rKIiIiIiIgc51EhtXLlSmJiYmoqSzlff/01V199NX/9619ZuHAhjRs35qGHHuL+++8HYPfu3aSnp9OnTx/XPuHh4XTr1o3ly5dXWkgVFRVRVFTkem+322v2QkREREREpF7xqJBq1qwZsbGxNZWlnN9++43XX3+dESNG8PTTT7N69WoeeeQRbDYbgwcPdg0zjIuLc9svLi7ulEMQp0yZwvjx48uvGDAA/Pyq9RrOyKpV0L+/2SmkLlGbEU+pzYin1GbEU2oz4glvai8lJVXazKNCqrY5nU4uvPBCJk+eDECXLl3YsmULM2fOZPDgwWd83FGjRjFixAjXe7vdTtOmTeGTTyAs7E/n/tP694evvzY7hdQlajPiKbUZ8ZTajHhKbUY84U3txW6H8PDTblblWft69eqFzWb7U5k8lZCQQLt27dyWtW3bln379gEQHx8PQEZGhts2GRkZrnUV8ff3JywszO0lIiIiIiJSVVUupBYsWEBEREQNRimvZ8+ebN++3W3Zjh07aN68OVA28UR8fDzz5s1zrbfb7axcuZLu3bvXalYREREREWk4vHpo3/Dhw+nRoweTJ0/mb3/7G6tWreLNN9/kzTffBMpmCRw2bBgTJ06kdevWrunPExMTuemmm8wNLyIiIiIi9ZZXF1Jdu3bliy++YNSoUTz33HO0bNmSadOmMXDgQNc2I0eOJC8vjyFDhnDs2DEuueQSfvjhBz1DSkREREREaoxXF1IA119/Pddff32l6y0WC8899xzPPfdcLaYSEREREZGGrMr3SImIiIiIiEgZj3ukHA4Hs2bNYt68eWRmZuJ0Ot3Wz58/v9rCiYiIiIiIeCOPC6lHH32UWbNmcd1119GhQwcsFktN5BIREREREfFaHhdSH3/8MZ9++inXXnttTeQRERERERHxeh7fI2Wz2WjVqlVNZBEREREREakTPC6kHnvsMaZPn45hGDWRR0RERERExOt5PLRvyZIlLFiwgO+//5727dvj5+fntn7OnDnVFk5ERERERMQbeVxIRUREcPPNN9dEFhERERERkTrB40Lq3XffrYkcpkhOTiY5ORmHw2F2FBERERERqUMa9AN5k5KSSElJYfXq1WZHERERERGROsTjHimA//73v3z66afs27eP4uJit3Xr1q2rlmAiIiIiIiLeyuMeqVdeeYV77rmHuLg41q9fz0UXXUR0dDS//fYb/fr1q4mMIiIiIiIiXsXjQuq1117jzTffZMaMGdhsNkaOHMncuXN55JFHyM7OromMIiIiIiIiXsXjQmrfvn306NEDgMDAQHJycgC48847+eijj6o3nYiIiIiIiBfyuJCKj4/n6NGjADRr1owVK1YAsHv3bj2kV0REREREGgSPC6krr7ySr7/+GoB77rmH4cOH07dvXwYMGKDnS4mIiIiISIPg8ax9b775Jk6nEyibPjw6Opply5bRv39/HnjggWoPKCIiIiIi4m08LqSsVitW6x8dWbfddhu33XZbtYYSERERERHxZmf0QN7FixczaNAgunfvzsGDBwH4z3/+w5IlS6o1nIiIiIiIiDfyuJD6/PPPufrqqwkMDGT9+vUUFRUBkJ2dzeTJk6s9oIiIiIiIiLfxuJCaOHEiM2fO5K233sLPz8+1vGfPnqxbt65aw4mIiIiIiHgjjwup7du3c9lll5VbHh4ezrFjx6ojU4PlcBos33WEr8LOZvmuIzicmk5eRERERMQbeTzZRHx8PDt37qRFixZuy5csWcJZZ51VXblqRXJyMsnJyTgcDrOj8MOWNMZ/k0JadiE06QNvrSAhPIBxN7Tjmg4JZscTEREREZETeNwjdf/99/Poo4+ycuVKLBYLqampzJ49m8cff5wHH3ywJjLWmKSkJFJSUli9erWpOX7YksaDH6wrK6JOkJ5dyIMfrOOHLWkmJRMRERERkYp43CP11FNP4XQ66d27N/n5+Vx22WX4+/vz+OOP8/DDD9dExnrN4TQY/00KFQ3iMwALMP6bFPq2i8fHaqnldCIiIiIiUhGPCymLxcIzzzzDE088wc6dO8nNzaVdu3aEhITURL56b9Xuo+V6ok5kAGnZhazafZTuZ0fXXjAREREREamUx4XUcTabjXbt2lVnlgYpM6fyIupMthMRERERkZpX5ULq3nvvrdJ2//73v884TEMUGxpQpe2ig201nERERERERKqqyoXUrFmzaN68OV26dMEwNC13dbmoZRQJ4QGkZxdWeJ/UcRO/28bzt/pxXtOI2oomIiIiIiKVqHIh9eCDD/LRRx+xe/du7rnnHgYNGkRUVFRNZmsQfKwWxt3Qjgc/WIcF3Iqp4++DbD78kp7Dza8tZXD3Fjx21TmEBvhVfEAREREREalxVZ7+PDk5mbS0NEaOHMk333xD06ZN+dvf/saPP/6oHqo/6ZoOCbw+6Hziw92H+cWHBzBz0PksHnkFt3RpjGHArGV76Dt1ET9uTTcprYiIiIiIePQcKX9/f26//Xbmzp1LSkoK7du356GHHqJFixbk5ubWVMYG4ZoOCSx58ko+uv9iph/4iY/uv5glT17JNR0SiA7xZ+qA8/jgvm40jw4i3V7IA/9Zy5D315CWXWB2dBERERGRBsfjB/K6drRasVgsGIaBw+GozkwNlo/VQvezo7nRvovuZ0eXe27UJa0b8eOwy0i64mx8rRb+LyWDvlMXMWvpbhxO9QqKiIiIiNQWjwqpoqIiPvroI/r27cs555zD5s2befXVV9m3b5+eI1VLAvx8eOLqNnz3yKWc3yyC3KJSnv0mhVteW8rW1Gyz44mIiIiINAhVLqQeeughEhISeP7557n++uvZv38/n332Gddeey1W6xl3bMkZOjc+lP/+owcTb+pAqL8vGw9k0//VpUz+3zbyi0vNjiciIiIiUq9Veda+mTNn0qxZM8466ywWLlzIwoULK9xuzpw51RZOTs1qtTDo4uZc1S6O8d+k8N3mNN5c9Bv/25zGhJs6cMW5sWZHFBERERGpl6pcSN11111YLJbTbyi1LjYsgOSB53PLtgzGfrWVA1kF3PPuaq7vlMDYG9pV+aG/IiIiIiJSNR49kLe+SU5OJjk5ud5MltG7bRwXnxXN1Lk7eHfpbr7dlMaiHYd4ql9bbuvaFKtVhbCIiIiISHVo0Dc3JSUlkZKSwurVq82OUm2C/X0Zc307vh56CR0bh2MvLOXpLzYz4M3l/JqRY3Y8EREREZF6oUEXUvVZh8bhfPFQD8Zc344gmw+r92Rx7SuLeen/tlNYUj964EREREREzKJCqh7z9bFy3yUtmTuiF33axlLiMJgxfyf9pi9m2a7DZscTEREREamzVEg1AI0jAnnrrgt5feD5xIb6s/twHne8tZLHP9tIVl6x2fFEREREROocFVINhMVioV/HBH56rBd3XtwciwX+u/YAvacuZM66AxiGYXZEEREREZE6Q4VUAxMW4MeEmzrw33/04Ny4UI7mFTPi040Memclew7nmR1PRERERKROUCHVQF3QPJJvH7mEkdeci7+vlaU7j3D1tEUkL9hJcanT7HgiIiIiIl5NhVQD5udj5aHLW/F/wy/j0taNKCp18s8ft3P9jMWs3XvU7HgiIiIiIl5LhZTQPDqY9++9iGkDziM62MaOjFxufX05z3yxmeyCErPjiYiIiIh4nTpVSD3//PNYLBaGDRvmWlZYWEhSUhLR0dGEhIRw6623kpGRYV7IOspisXBTl8b8NKIXf7uwCQCzV+6jz9SFfLcpTZNRiIiIiIicoM4UUqtXr+aNN96gU6dObsuHDx/ON998w2effcbChQtJTU3llltuMSll3RcZbOPFv3Tm4yEXc1ZMMIdyikj6cB33vbeGA1n5ZscTEREREfEKdaKQys3NZeDAgbz11ltERka6lmdnZ/POO+8wdepUrrzySi644ALeffddli1bxooVK0xMXPddfFY03z96KY/2bo3Nx8r8XzLpO3URby/+jVKHJqMQERERkYatThRSSUlJXHfddfTp08dt+dq1aykpKXFb3qZNG5o1a8by5ctrO2a94+/rw/C+5/C/Ry/lopZRFJQ4mPjdNm5MXsqmA8fMjiciIiIiYhpfswOczscff8y6detYvXp1uXXp6enYbDYiIiLclsfFxZGenl7pMYuKiigqKnK9t9vt1Za3PmoVG8LH91/MZ2v3M/l/v7A11c5NyUsZ3KMFj111LiH+Xt+MRERERESqlVf/BLx//34effRR5s6dS0BAQLUdd8qUKYwfP778igEDwM+v2s5zxlatgv79zU7hxgoMAK70CWRifHe+Cm/Nu0v38OPPmxmftpS+uXvNjtiweWGbES+nNiOeUpsRT6nNiCe8qb2UVG3WaovhxdOxffnll9x88834+Pi4ljkcDiwWC1arlR9//JE+ffqQlZXl1ivVvHlzhg0bxvDhwys8bkU9Uk2bNiU7O5uwsLAau54q698fvv7a7BSntHDHIUZ/uZn9RwsAuKZ9PM/2b098ePUVvOKBOtBmxMuozYin1GbEU2oz4gkvai92u53w8PDT1gZefY9U79692bx5Mxs2bHC9LrzwQgYOHOj62s/Pj3nz5rn22b59O/v27aN79+6VHtff35+wsDC3l3im1zkx/N+wXvyj19n4WC38sDWdPlMX8v7yPTicXlubi4iIiIhUC68e2hcaGkqHDh3clgUHBxMdHe1aft999zFixAiioqIICwvj4Ycfpnv37lx88cVmRG5QAm0+PNWvDf07JzLqi81s3H+MsV9tZc66g0y5pSNtE1SgioiIiEj95NU9UlXx8ssvc/3113Prrbdy2WWXER8fz5w5c8yO1aC0SwxjzoM9GN+/PSH+vmzYf4wbZizh+e9/oaDYYXY8EREREZFq59U9UhX5+eef3d4HBASQnJxMcnKyOYEEAB+rhcE9WnB1+3jGfb2FH7dmMHPhLv63OY2JN3XgsnNizI4oIiIiIlJt6nyPlHiX+PAA3rjzQt688wISwgPYdzSfu/69ikc/Xs/h3KLTH0BEREREpA5QISU14qr28cwd0Yu7e7TAYoGvNqTS+6WFfLp6P148UaSIiIiISJWokJIaE+Lvy7P92/PlQz1plxBGdkEJIz/fxG1vrmDXoVyz44mIiIiInDEVUlLjOjeN4OuhPXn62jYE+vmwcvdR+k1bzLSfdlBUqskoRERERKTuUSEltcLXx8qQy87m/4ZfxuXnxlDscDLtp1+5dvpiVv52xOx4IiIiIiIeUSEltappVBDv3t2VV+/oQqMQf3YdymPAmyt48r+bOJZfbHY8EREREZEqUSEltc5isXB9p0TmPdaLO7o1A+CTNfvpM3UhX204qMkoRERERMTrqZAS04QH+jH55o789x/daR0bwuHcYh79eAN3/XsV+47kmx1PRERERKRSDbqQSk5Opl27dnTt2tXsKA3ahS2i+O6RS3n8qnOw+VpZ/Othrpq2kNd/3kWJw2l2PBERERGRchp0IZWUlERKSgqrV682O0qDZ/O1MvTK1vw47DJ6nB1NYYmTF374hRtmLGHdviyz44mIiIiIuGnQhZR4n5aNgpn992689NfORAb58Ut6Dre+vowxX27BXlhidjwREREREUCFlHghi8XCrRc0Yd5jl3Pr+U0wDPjPir30nbqQ7zenaTIKERERETGdCinxWlHBNl76W2c+/Hs3WkQHkWEv4sHZ67j//TWkHiswO56IiIiI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+tX3v8P6fj4z1PfPtL6fzwz1/TOt7+czw5+9Rg3t8zJ2u53w8HCys7NN+c2R1D1qM+IptRnxlNqMeEptRjxRV9uLeqS8jL+/P+PGjcPf39/sKFJHqM2Ip9RmxFNqM+IptRnxRF1tL+qREhERERER8ZB6pERERERERDykQkpERERERMRDKqREREREREQ8pEJKRERERETEQyqkatCiRYu44YYbSExMxGKx8OWXX552n59//pnzzz8ff39/WrVqxaxZs8ptk5ycTIsWLQgICKBbt26sWrWq+sOLKWqizUyZMoWuXbsSGhpKbGwsN910E9u3b6+ZC5BaV1PfZ457/vnnsVgsDBs2rNoyi7lqqs0cPHiQQYMGER0dTWBgIB07dmTNmjXVfwFS62qizTgcDsaMGUPLli0JDAzk7LPPZsKECWgOtPrB0zaTlpbGHXfcwTnnnIPVaq30/5zPPvuMNm3aEBAQQMeOHfnf//5X/eE9oEKqBuXl5dG5c2eSk5OrtP3u3bu57rrruOKKK9iwYQPDhg3j73//Oz/++KNrm08++YQRI0Ywbtw41q1bR+fOnbn66qvJzMysqcuQWlQTbWbhwoUkJSWxYsUK5s6dS0lJCVdddRV5eXk1dRlSi2qizRy3evVq3njjDTp16lTdscVENdFmsrKy6NmzJ35+fnz//fekpKTw0ksvERkZWVOXIbWoJtrMCy+8wOuvv86rr77Ktm3beOGFF3jxxReZMWNGTV2G1CJP20xRURExMTGMHj2azp07V7jNsmXLuP3227nvvvtYv349N910EzfddBNbtmypzuieMaRWAMYXX3xxym1GjhxptG/f3m3ZgAEDjKuvvtr1/qKLLjKSkpJc7x0Oh5GYmGhMmTKlWvOK+aqrzZwsMzPTAIyFCxdWR0zxItXZZnJycozWrVsbc+fONXr16mU8+uij1ZxWvEF1tZknn3zSuOSSS2oioniZ6moz1113nXHvvfe6bXPLLbcYAwcOrLas4h2q0mZOVNn/OX/729+M6667zm1Zt27djAceeOBPJjxz6pHyIsuXL6dPnz5uy66++mqWL18OQHFxMWvXrnXbxmq10qdPH9c20rCcrs1UJDs7G4CoqKgazSbeqaptJikpieuuu67cttLwVKXNfP3111x44YX89a9/JTY2li5duvDWW2/VdlTxElVpMz169GDevHns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1157zbXvnj17sFgszJkzhyuuuIKgoCA6d+7M8uXLXdscOXKE22+/ncaNGxMUFETHjh356KOPKs1T0eeWl5dHWFiY298RwJdffklwcPAph6AdbwvNmzfnwQcfpE+fPnz99dcATJ06lY4dOxIcHEzTpk156KGH3D7T439XX3/9Ne3atcPf3599+/axevVq+vbtS6NGjQgPD6dXr16sW7eu3Of6xhtvcP311xMUFETbtm1Zvnw5O3fu5PLLLyc4OJgePXqwa9cut/2++uorzj//fAICAjjrrLMYP368q0enRYsWANx8881YLBbX+9PtdzzP66+/Tv/+/QkODmbSpEkVfl6ffvopnTt3pnHjxuXWxcbGEh8fz/nnn8+wYcPYv38/v/zyS5U/7xOPk5CQwGWXXcbYsWNJSUlh586dAERGRtKzZ08+/vjjCvOJiHhKhZSIyBnasmULy5Ytw2azuZZNmTKF999/n5kzZ7J161aGDx/OoEGDWLhwodu+TzzxBC+99BKrV68mJiaGG264wVWY7Nq1i2uuuYZbb72VTZs28cknn7BkyRKGDh0KwJw5c2jSpAnPPfccaWlppKWllcs2YMAAHnvsMdq3b+/aZsCAAeW2y8vL4+qrryYyMpLVq1fz2Wef8dNPP7nOddyCBQvYtWsXCxYs4L333mPWrFmuwqyqAgMDcTqdlJaWMnv2bMaOHcukSZPYtm0bkydPZsyYMbz33ntu+zzzzDM8/vjjbNiwgXPOOYfbb7/d9UN8YWEhF1xwAd999x1btmxhyJAh3HnnnaxatarC81f0uQUHB3Pbbbfx7rvvum377rvv8pe//MU1BK2q13e8F8VqtfLKK6+wdetW3nvvPebPn8/IkSPdts/Pz+eFF17g7bffZuvWrcTGxpKTk8PgwYNZsmQJK1asoHXr1lx77bXlCroJEyZw1113sWHDBtq0acMdd9zBAw88wKhRo1izZg2GYbj9HS5evJi77rqLRx99lJSUFN544w1mzZrlKnpWr17tuu60tDTX+9Ptd9yzzz7LzTffzObNm7n33nsr/HwWL17MhRdeeMrPMDs721XonPjv6nSfd2XrAbdtLrroIhYvXnzK44qIVJkhIiJVMnjwYMPHx8cIDg42/P39DcCwWq3Gf//7X8MwDKOwsNAICgoyli1b5rbffffdZ9x+++2GYRjGggULDMD4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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plot_metrics_vs_rpp(\n", - " metrics_df,\n", - " models,\n", - " markers,\n", - " [\"total_repetitions\"],\n", - " [\"Mean Total Repetitions\"],\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "### Analyzing: Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00\n", - "*** Found 14 rows with total_repetitions > 50 for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00\n", - "文洁默默地转身走去,任双脚将她带向别处。\n", - "================================================================================\n", - "Wenjie turned around, not caring where her feet would carry her.\n", - "================================================================================\n", - " Wenjie turned and walked away, letting her feet take her somewhere else. She didn't know where she was going. She didn't care. She just wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1-50: `'You don't know what I'm thinking,' said Crimson.`\n", - "Group 2 found at 51-101: `'You don't know what I'm thinking,' said Crimson. `\n", - "Group 3 found at 51-100: `'You don't know what I'm thinking,' said Crimson.`\n", - "(0, 100, 100)\n", - "小红抬头见是小丫头子坠儿。\n", - "================================================================================\n", - "Crimson looked up. It was Trinket, another of the maids from Green Delights.\n", - "================================================================================\n", - " Crimson looked up and saw that it was Trinket, one of the junior maids.\n", - "Crimson looked up and saw that it was Trinket, one of the junior maids.\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1450-5338: `. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief`\n", - "Group 2 found at 5338-9226: `. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief`\n", - "Group 3 found at 5338-9226: `. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief`\n", - "(0, 7776, 7776)\n", - "再看王琦瑶,眼前便有些发虚,焦点没对准似的,恍惚间,他看见了三十多年前的那个影。\n", - "================================================================================\n", - "His vision grew blurry as he stared at Wang Qiyao, as if his eyes couldn't focus properly, and through that hazy vision he saw an image of her from more than three decades ago.\n", - "================================================================================\n", - " He could not take his eyes off Wang Qiyao. The image before him seemed to blur, as if the camera lens were out of focus. In a daze, he saw the figure of a young woman from more than thirty years ago. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 6-3202: `!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈��!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard`\n", - "Group 2 found at 3202-6398: `!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard`\n", - "Group 3 found at 3202-6398: `!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard`\n", - "(0, 6392, 6392)\n", - "那男孩略一迟疑,道:“我叫…… 叫小玄子。\n", - "================================================================================\n", - "After a moment's hesitation the boy replied: 'Mine's . . . People call me Misty.\n", - "================================================================================\n", - "The boy hesitated for a moment. 'I'm called Blossom. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 84-160: `\n", - "Chinese: 'I'm not going to tell you.'\n", - "English: 'I'm not going to tell you.'`\n", - "Group 2 found at 160-236: `\n", - "Chinese: 'I'm not going to tell you.'\n", - "English: 'I'm not going to tell you.'`\n", - "Group 3 found at 160-236: `\n", - "Chinese: 'I'm not going to tell you.'\n", - "English: 'I'm not going to tell you.'`\n", - "(0, 152, 152)\n", - "二奶奶的曲线流畅;二奶奶的双乳高耸;二奶奶的崎岖不平的额头上流动着细小的沙流;二奶奶性感的双唇从金沙中凸出来,好象在召唤着一种被华丽的衣裳遮住��的奔放的实事求是精神……\n", - "================================================================================\n", - "Second Grandma's shapely figure; Second Grandma's high-arching breasts; tiny grains of shifting sand on Second Grandma's furrowed brow; Second Grandma's sensual lips protruding through the golden-yellow sand . . .\n", - "================================================================================\n", - "Her curves were smooth; her breasts stood out; tiny grains of sand trickled down her furrowed brow; her sensual lips protruded from the golden sand, as if calling out to a liberated, pragmatic spirit hidden beneath her elegant clothing. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 101-151: `.\n", - "Chinese: 'I'm not a man.\n", - "English: 'I'm not a man`\n", - "Group 2 found at 151-201: `.\n", - "Chinese: 'I'm not a man.\n", - "English: 'I'm not a man`\n", - "Group 3 found at 151-201: `.\n", - "Chinese: 'I'm not a man.\n", - "English: 'I'm not a man`\n", - "(0, 100, 100)\n", - "\n", - "*** Found 10 rows with output_tokens >= 2048 for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00\n", - "--------------------------------------------------\n", - "chinese: 文洁默默地转身走去,任双脚将她带向别处。\n", - "--------------------------------------------------\n", - "english: Wenjie turned around, not caring where her feet would carry her.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Wenjie turned and walked away, letting her feet take her somewhere else. She didn't know where she was going. She didn't care. She just wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place where she had killed a man. She wanted to get away from the place\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: “有…… 没有…… 有…… 没有……\n", - "--------------------------------------------------\n", - "english: 'Yes . . . no . . . yes . . . no . . .\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 'Yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . .\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 一面说,一面坐下吃茶。 那宝玉便和他说些没要紧的散话:\n", - "--------------------------------------------------\n", - "english: He sat down, nevertheless, and sipped his tea while Bao-yu made conversation on a number of unimportant topics.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Bao-yu sat down and began to drink some tea. While he was doing this, he engaged the old lady in some desultory conversation.\n", - "Chinese: 'I'm afraid I can't do that, ' said Dai-ru. 'I'm not allowed to leave the house. I'm not even allowed to go out into the garden. I'm not allowed to do anything except sit here and do nothing all day long. I'm bored to death. I wish I could go out and see something of the world. I wish I could go and see your place. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your Auntie Li. I wish I could go and see your Auntie Zhao. I wish I could go and see your Auntie Liu. I wish I could go and see your Auntie Chen. I wish I could go and see your Auntie Wang. I wish I could go and see your Auntie Xue. I wish I could go and see your\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 周瑞家的听了,便已猜着几分来意。 只因他丈夫昔年争买田地一事,多得狗儿他父亲之力,今见刘姥姥如此,心中难却其意;二则也要显弄自己的体面。 便笑说:“老老你放心。\n", - "--------------------------------------------------\n", - "english: From the tone of this reply Zhou Rui's wife was already able to make a pretty good guess as to the real purpose of the old woman's visit; but because some years previously her husband had received a lot of help from Gou-er's father in a dispute over the purchase of some land, she could not very well reject Grannie Liu now, when she came to her as a suppliant. She was, in any case, anxious to demonstrate her own importance in the Jia household; and so the answer she gave her was a gracious one. 'Don't you worry, Grannie!\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Zhou Rui's wife had by now guessed the purpose of Grannie Liu's visit. Her husband had been helped by Grannie Liu's son-in-law in a land dispute some years before, and she felt that she could not refuse to help Grannie Liu in her present plight. Besides, she wanted to show off her own importance. 'Don't worry, Grannie,' she said. 'I'll do my best for you. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 斯坦顿上校已经离开了,汪淼拿起了他放在草帽上的望远镜,克服着双手的颤抖观察被“飞刃”切割成四十多片的“审判日”号。\n", - "--------------------------------------------------\n", - "english: Colonel Stanton had already left. Wang picked up the binoculars he'd left on top of his hat. Overcoming his trembling hands, he observed Judgment Day.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Colonel Stanton had already left. Wang picked up the binoculars that he had left on the hat and, fighting the trembling in his hands, observed the forty or so pieces of Judgment Day that had been sliced by the Flying Blade.\n", - "Wang had never seen a ship cut in half before, and the sight was shocking. The pieces were still connected by cables and other equipment, and the ship's structure had been reinforced to withstand the forces of the ocean. But the cuts were clean, and the edges were smooth. The ship had been sliced like a loaf of bread. The pieces were still floating in the water, but they were slowly sinking. The ship's stern was already submerged. The ship's superstructure was still intact, but the bridge had been sliced in half. The upper half was still connected to the ship, but the lower half had fallen into the water. The ship's funnel had also been sliced in half, and the upper half was leaning over the edge of the ship. The ship's propellers were still spinning, but they were no longer connected to the engines. The ship's hull was still intact, but the cuts had exposed the ship's interior. The ship's cargo was visible, and the ship's crew was still on board. They were standing on the ship's deck, looking at the damage in disbelief. The ship's captain was still on the bridge, looking out at the damage. He was still in his uniform, but his hat was gone. He was holding a megaphone, and he was shouting orders to the crew. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew was still on board, but they were no longer working. They were standing on the ship's deck, looking at the damage in disbelief. The ship's crew\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 再看王琦瑶,眼前便有些发虚,焦点没对准似的,恍惚间,他看见了三十多年前的那个影。\n", - "--------------------------------------------------\n", - "english: His vision grew blurry as he stared at Wang Qiyao, as if his eyes couldn't focus properly, and through that hazy vision he saw an image of her from more than three decades ago.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: He could not take his eyes off Wang Qiyao. The image before him seemed to blur, as if the camera lens were out of focus. In a daze, he saw the figure of a young woman from more than thirty years ago. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 鸡巴!\n", - "--------------------------------------------------\n", - "english: You pricks!\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 'Cock!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你��妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 那男孩略一迟疑,道:“我叫…… 叫小玄子。\n", - "--------------------------------------------------\n", - "english: After a moment's hesitation the boy replied: 'Mine's . . . People call me Misty.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: The boy hesitated for a moment. 'I'm called Blossom. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 那僧道:“此事说来好笑。\n", - "--------------------------------------------------\n", - "english: 'You will laugh when I tell you,' said the monk.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 'The story of how this came about is a very curious one,' said the monk. 'I hope you will not mind my telling you. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 二奶奶的曲线流畅;二奶奶的双乳高耸;二奶奶的崎岖不平的额头上流动着细小的沙流;二奶奶性感的双唇从金沙中凸出来,好象在召唤着一种被华丽的衣裳遮住了的奔放的实事求是精神……\n", - "--------------------------------------------------\n", - "english: Second Grandma's shapely figure; Second Grandma's high-arching breasts; tiny grains of shifting sand on Second Grandma's furrowed brow; Second Grandma's sensual lips protruding through the golden-yellow sand . . .\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Her curves were smooth; her breasts stood out; tiny grains of sand trickled down her furrowed brow; her sensual lips protruded from the golden sand, as if calling out to a liberated, pragmatic spirit hidden beneath her elegant clothing. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 2048\n", - "\n", - "*** Found 11 rows with incomplete translations for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00\n", - "--------------------------------------------------\n", - "chinese: 看不到星星,本来,由于可见光波段已被推至不可见,星星应该是一个个黑点,但厘米波的衍射淹没了一切形状和细节。\n", - "--------------------------------------------------\n", - "english: He could not see any stars. Normally, since visible light would be compressed to invisible by the glasses, each star should appear as a black dot. But the diffraction of centimeter-wave radiation overwhelmed all other shapes and details.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 'We can't see the stars. Originally, because the visible light band has been shifted to the invisible, the stars should appear as black dots. But the diffraction of centimeter waves obscures all shapes and details.'\n", - "Chinese: 看不到星星,本来,由于可见光波段已被推至不可见,星星应该是一个个黑点,但厘米波的衍射淹没了一切形状和细节。\n", - "English: 'We can't see the stars. Originally, because the visible light band has been shifted to the invisible, the stars should appear as black dots. But the diffraction of centimeter waves obscures all shapes and details.'\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 他为甚么不去禀报皇上?\n", - "--------------------------------------------------\n", - "english: But I wonder why he doesn't tell the Emperor?\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Why didn't he report it to the Emperor?\n", - "Chinese: 他为甚么不去禀报皇上?\n", - "English:Why didn't he report it to the Emperor?\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 爷爷要父亲帮助他挤压伤口。\n", - "--------------------------------------------------\n", - "english: He told Father to squeeze the area around the wound.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Granddad asked Father to help him squeeze the wound.\n", - "Chinese: 爷爷要父亲帮助他挤压伤口。\n", - "English: Granddad asked Father to help him squeeze the wound.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 也到底大家想个方法儿才好。\n", - "--------------------------------------------------\n", - "english: 'But can't we all sit down peaceably and think of a way?\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: We must try to think of something.\n", - "Chinese: 也到底大家想个方法儿才好。\n", - "English:We must try to think of something.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 父亲把爷爷拖起来。\n", - "--------------------------------------------------\n", - "english: Father pulled Granddad to his feet.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Father dragged Granddad to his feet.\n", - "Chinese: 父亲把爷爷拖起来。\n", - "English:Father dragged Granddad to his feet.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 鸡巴!\n", - "--------------------------------------------------\n", - "english: You pricks!\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 'Cock!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: ���他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你他妈的!\n", - "English: 'You fucking bastard!'\n", - "Chinese: 你\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 同时她揪住乳头往下拉,以示耷拉之状。\n", - "--------------------------------------------------\n", - "english: Meanwhile, she pulled her breasts down by the nipples to show me where they would reach.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: At the same time she tugged on the nipples to show how they drooped.\n", - "Chinese: 他把那张纸撕碎了。\n", - "English: He tore the paper into pieces.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 不看僧面看佛面,不看鱼面看水面,不看我的面子也要看豆官的面子上,留下吧,你要我…… 我也给你…… 你就像我的爹一样……”\n", - "--------------------------------------------------\n", - "english: 'If not for the sake of the monk, stay for the Buddha. If not for the sake of the fish, stay for the water. If not for my sake, stay for little Douguan. You can have me, if you want. . . . You're like my own father. . . .'\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Please, for my sake, or for the sake of my little Bean, stay. You're like a father to me.'\n", - "答案:\n", - "\n", - "'Please, for my sake, or for the sake of my little Bean, stay. You're like a father to me.'\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 我是个什么东西儿!\n", - "--------------------------------------------------\n", - "english: What sort of creature do you take me for?\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 'What sort of person am I? What sort of person?'\n", - "Chinese: 我是个什么东西儿!\n", - "English: 'What sort of person am I? What sort of person?'\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 他在这夜晚里嗅到了他所熟悉的气息。 灯光令他亲切,是驻进他身心里的那种。\n", - "--------------------------------------------------\n", - "english: He took in the familiar scents of the city and soaked up the evening scene.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: The night air was filled with familiar smells, and the lamplight seemed to have been made for him.\n", - "\n", - "Chinese: 他在这夜晚里嗅到了他所熟悉的气息。 灯光令他亲切,是驻进他身心里的那种。\n", - "English:The night air was filled with familiar smells, and the lamplight seemed to have been made for him.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "--------------------------------------------------\n", - "chinese: 补我一枪吧……”\n", - "--------------------------------------------------\n", - "english: Shoot me, please. . . .'\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: Finish me off. . . .'\n", - "答案:\n", - "\n", - "'Finish me off. . . .'\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.00: 1\n", - "### Analyzing: Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02\n", - "*** Found 10 rows with total_repetitions > 50 for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02\n", - "我的手的确很巧,不光表现在摸女人方面。\n", - "================================================================================\n", - "My hands are indeed very skillful, which wasn't just shown by how I touched women.\n", - "================================================================================\n", - " My hands were indeed very skillful, not just in touching women.\n", - "Chinese: 'I'm not that bad.\n", - "English: 'I'm not that bad.\n", - "Chinese: 'I'm not that bad.\n", - "English: 'I'm not that bad.\n", - "Chinese: 'I'm not that bad.\n", - "English: 'I'm not that bad.\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 63-119: `.\n", - "Chinese: 'I'm not that bad.\n", - "English: 'I'm not that bad`\n", - "Group 2 found at 175-231: `.\n", - "Chinese: 'I'm not that bad.\n", - "English: 'I'm not that bad`\n", - "Group 3 found at 175-231: `.\n", - "Chinese: 'I'm not that bad.\n", - "English: 'I'm not that bad`\n", - "(0, 168, 168)\n", - "“有…… 没有…… 有…… 没有……\n", - "================================================================================\n", - "'Yes . . . no . . . yes . . . no . . .\n", - "================================================================================\n", - " 'Yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . .\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 0-94: `Vain Man pondered over this for some time and then proceeded to read the manuscript once more.`\n", - "Group 2 found at 95-189: `Vain Man pondered over this for some time and then proceeded to read the manuscript once more.`\n", - "Group 3 found at 95-189: `Vain Man pondered over this for some time and then proceeded to read the manuscript once more.`\n", - "(0, 189, 189)\n", - "小红道:“你那里知道我心里的事!”\n", - "================================================================================\n", - "'Why not?' said Crimson. 'How do you know what is on my mind?'\n", - "================================================================================\n", - " 'You don't know what I'm thinking,' said Crimson.\n", - "'You don't know what I'm thinking,' said Crimson. (p. 102)\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1-50: `'You don't know what I'm thinking,' said Crimson.`\n", - "Group 2 found at 51-101: `'You don't know what I'm thinking,' said Crimson. `\n", - "Group 3 found at 51-100: `'You don't know what I'm thinking,' said Crimson.`\n", - "(0, 100, 100)\n", - "小红抬头见是小丫头子坠儿。\n", - "================================================================================\n", - "Crimson looked up. It was Trinket, another of the maids from Green Delights.\n", - "================================================================================\n", - " Crimson looked up and saw that it was Trinket, one of the junior maids.\n", - "Crimson looked up and saw that it was Trinket, one of the junior maids.\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 877-901: `. The ship would be gone`\n", - "Group 2 found at 901-925: `. The ship would be gone`\n", - "Group 3 found at 901-925: `. The ship would be gone`\n", - "\n", - "Group 1 found at 103-151: `.\n", - "Chinese: 'I'm not sure.\n", - "English: 'I'm not sure`\n", - "Group 2 found at 199-247: `.\n", - "Chinese: 'I'm not sure.\n", - "English: 'I'm not sure`\n", - "Group 3 found at 199-247: `.\n", - "Chinese: 'I'm not sure.\n", - "English: 'I'm not sure`\n", - "(0, 144, 144)\n", - "凤姐道:“碰坏一点儿,你可仔细你的皮!”\n", - "================================================================================\n", - "'If it's the tiniest bit chipped,' said Xi-feng, 'I'll have the hide off you!'\n", - "================================================================================\n", - " 'If you break any of them, I shall have your skin!'\n", - "'If you break any of them, I shall have your skin!'\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1-52: `'If you break any of them, I shall have your skin!'`\n", - "Group 2 found at 53-104: `'If you break any of them, I shall have your skin!'`\n", - "Group 3 found at 53-104: `'If you break any of them, I shall have your skin!'`\n", - "(0, 103, 103)\n", - "\n", - "*** Found 3 rows with output_tokens >= 2048 for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02\n", - "--------------------------------------------------\n", - "chinese: “有…… 没有…… 有…… 没有……\n", - "--------------------------------------------------\n", - "english: 'Yes . . . no . . . yes . . . no . . .\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 'Yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . . . yes . . . no . .\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 2048\n", - "--------------------------------------------------\n", - "chinese: 斯坦顿上校已经离开了,汪淼拿起了他放在草帽上的望远镜,克服着双手的颤抖观察被“飞刃”切割成四十多片的“审判日”号。\n", - "--------------------------------------------------\n", - "english: Colonel Stanton had already left. Wang picked up the binoculars he'd left on top of his hat. Overcoming his trembling hands, he observed Judgment Day.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: Colonel Stanton had already left. Wang picked up the pair of binoculars that he had left on the hat and observed the forty pieces of Judgment Day that had been sliced by the Flying Blade.\n", - "Wang had to struggle to keep his hands from shaking. The ship had been cut into pieces, but the pieces remained in place, as if held together by invisible strings. The edges of the cuts were razor-sharp, and the surfaces were smooth and shiny, as if polished. The pieces were still connected to each other by thin filaments of steel. Wang could see the filaments through the binoculars. They were as thin as spider silk, and they glowed with a faint blue light. The filaments were the only things holding the ship together. The pieces of the ship were still connected to each other, but they were slowly drifting apart. The ship was disintegrating. The pieces would soon fall into the sea. The ship would be gone. The ship would be gone, and the world would be gone. The world would be gone, and everything would be gone. Everything would be gone, and nothing would be left. Nothing would be left, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be nothing, and there would be nothing. There would be\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 2048\n", - "--------------------------------------------------\n", - "chinese: 顾炎武举起酒杯,高声吟道:\n", - "--------------------------------------------------\n", - "english: Gu Yanwu raised his wine-cup and, in ringing tones, recited the following couplet:\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: Gu Yanwu raised his cup and recited:\n", - "\n", - "'Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine! Wine!\n", - "--------------------------------------------------\n", - "output_tokens-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 2048\n", - "\n", - "*** Found 6 rows with incomplete translations for Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02\n", - "--------------------------------------------------\n", - "chinese: 看不到星星,本来,由于可见光波段已被推至不可见,星星应该是一个个黑点,但厘米波的衍射淹没了一切形状和细节。\n", - "--------------------------------------------------\n", - "english: He could not see any stars. Normally, since visible light would be compressed to invisible by the glasses, each star should appear as a black dot. But the diffraction of centimeter-wave radiation overwhelmed all other shapes and details.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 'We can't see the stars. Originally, because the visible light band has been shifted into the invisible, the stars should appear as black dots. But the diffraction of centimeter waves obscures all shape and detail.'\n", - "Chinese: 看不到星星,本来,由于可见光波段已被推至不可见,星星应该是一个个黑点,但厘米波的衍射淹没了一切形状和细节。\n", - "English: 'We can't see the stars. Originally, because the visible light band has been shifted into the invisible, the stars should appear as black dots. But the diffraction of centimeter waves obscures all shape and detail.'\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 1\n", - "--------------------------------------------------\n", - "chinese: 他为甚么不去禀报皇上?\n", - "--------------------------------------------------\n", - "english: But I wonder why he doesn't tell the Emperor?\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: Why didn't he report it to the Emperor?\n", - "Chinese: 他为甚么不去禀报皇上?\n", - "English:Why didn't he report it to the Emperor?\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 1\n", - "--------------------------------------------------\n", - "chinese: 也到底大家想个方法儿才好。\n", - "--------------------------------------------------\n", - "english: 'But can't we all sit down peaceably and think of a way?\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: We must try to think of something.\n", - "Chinese: 也到底大家想个方法儿才好。\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 1\n", - "--------------------------------------------------\n", - "chinese: 亚热带旱季的阳光把我晒得浑身赤红,痛痒难当,我的小和尚直翘翘地指向天空,尺寸空前。\n", - "--------------------------------------------------\n", - "english: The sunshine in the subtropical dry season had burned my entire body red, leaving me in an agony of burning and itching. My little Buddha pointed to the sky like an arrow, bigger than ever.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: The sun of the dry season in the subtropics turned my whole body red, and I suffered from unbearable itching and pain. My little Buddha pointed straight up at the sky, bigger than ever.\n", - "Chinese: 我们在那儿待了两天,我被晒得浑身通红,又疼又痒。\n", - "English: We stayed there for two days. I was sunburned all over, red, itchy, and painful.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 1\n", - "--------------------------------------------------\n", - "chinese: 同时她揪住乳头往下拉,以示耷拉之状。\n", - "--------------------------------------------------\n", - "english: Meanwhile, she pulled her breasts down by the nipples to show me where they would reach.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: At the same time she pulled on her nipples to show how they drooped.\n", - "Chinese: 他把那张纸条塞进我的手里,然后就走了。\n", - "English: He stuffed the note into my hand and left.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 1\n", - "--------------------------------------------------\n", - "chinese: 他在这夜晚里嗅到了他所熟悉的气息。 灯光令他亲切,是驻进他身心里的那种。\n", - "--------------------------------------------------\n", - "english: He took in the familiar scents of the city and soaked up the evening scene.\n", - "--------------------------------------------------\n", - "Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: The night air was filled with familiar smells, and the lamplight seemed to have been made for him.\n", - "\n", - "Chinese: 他在这夜晚里嗅到了他所熟悉的气息。 灯光令他亲切,是驻进他身心里的那种。\n", - "English:The night air was filled with familiar smells, and the lamplight seemed to have been made for him.\n", - "--------------------------------------------------\n", - "count_chinese_characters-Qwen/Qwen2-72B-Instruct/checkpoint-560/rpp-1.02: 1\n", - "### Analyzing: internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00\n", - "*** Found 3 rows with total_repetitions > 50 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.00\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - " SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SH\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 0-11: ` SHORT LONG`\n", - "Group 2 found at 11-23: ` SHORT LONG `\n", - "Group 3 found at 11-22: ` SHORT LONG`\n", - "\n", - "Group 1 found at 33-45: ` SHORT SHORT`\n", - "Group 2 found at 45-58: ` SHORT SHORT `\n", - "Group 3 found at 45-57: ` SHORT SHORT`\n", - "\n", - "Group 1 found at 7114-7119: `LONG `\n", - "Group 2 found at 7119-7124: `LONG `\n", - "Group 3 found at 7119-7124: `LONG `\n", - "\n", - "Group 1 found at 7124-7130: `SHORT `\n", - "Group 2 found at 7136-7142: `SHORT `\n", - "Group 3 found at 7136-7142: `SHORT `\n", - "\n", - "Group 1 found at 7142-7147: `LONG `\n", - "Group 2 found at 7147-7152: `LONG `\n", - "Group 3 found at 7147-7152: `LONG `\n", - "\n", - "Group 1 found at 7152-7158: `SHORT `\n", - "Group 2 found at 7158-7164: `SHORT `\n", - "Group 3 found at 7158-7164: `SHORT `\n", - "(0, 7154, 7154)\n", - "“猛捅——猛捅——”\n", - "================================================================================\n", - "'Poo-pah – poo-pah –'\n", - "================================================================================\n", - " 'Stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab, stab,\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.02\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - " SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SH\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 0-11: ` SHORT LONG`\n", - "Group 2 found at 11-23: ` SHORT LONG `\n", - "Group 3 found at 11-22: ` SHORT LONG`\n", - "\n", - "Group 1 found at 146-3146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "Group 2 found at 3146-6146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "Group 3 found at 3146-6146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "(0, 6146, 6146)\n", - "老头子跪在地上,哀求道:“八路老爷饶命,八路老爷饶命……”\n", - "================================================================================\n", - "He rose to his knees and begged, 'Spare me, Eighth Route Master, spare me!'\n", - "================================================================================\n", - " The old man knelt on the ground and begged for his life: 'Please spare my life, please spare my life, please spare my life, please spare my life . . .'\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.04\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - " SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT LONG LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SH\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 0-11: ` SHORT LONG`\n", - "Group 2 found at 11-23: ` SHORT LONG `\n", - "Group 3 found at 11-22: ` SHORT LONG`\n", - "\n", - "Group 1 found at 33-45: ` SHORT SHORT`\n", - "Group 2 found at 45-58: ` SHORT SHORT `\n", - "Group 3 found at 45-57: ` SHORT SHORT`\n", - "\n", - "Group 1 found at 170-175: `LONG `\n", - "Group 2 found at 175-180: `LONG `\n", - "Group 3 found at 175-180: `LONG `\n", - " 50 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.06\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - " SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SH\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 0-11: ` SHORT LONG`\n", - "Group 2 found at 11-23: ` SHORT LONG `\n", - "Group 3 found at 11-22: ` SHORT LONG`\n", - "\n", - "Group 1 found at 105-123: `SHORT SHORT SHORT `\n", - "Group 2 found at 123-141: `SHORT SHORT SHORT `\n", - "Group 3 found at 123-141: `SHORT SHORT SHORT `\n", - " 50 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - " SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SH\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 0-11: ` SHORT LONG`\n", - "Group 2 found at 11-23: ` SHORT LONG `\n", - "Group 3 found at 11-22: ` SHORT LONG`\n", - "\n", - "Group 1 found at 146-3146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "Group 2 found at 3146-6146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "Group 3 found at 3146-6146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "(0, 6146, 6146)\n", - "\n", - "*** Found 1 rows with output_tokens >= 2048 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08\n", - "--------------------------------------------------\n", - "chinese: 短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "--------------------------------------------------\n", - "english: short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "--------------------------------------------------\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08: SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SH\n", - "--------------------------------------------------\n", - "output_tokens-internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08: 2049\n", - "\n", - "*** Found 0 rows with incomplete translations for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.08\n", - "### Analyzing: internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10\n", - "*** Found 1 rows with total_repetitions > 50 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - " SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SH\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 0-11: ` SHORT LONG`\n", - "Group 2 found at 11-23: ` SHORT LONG `\n", - "Group 3 found at 11-22: ` SHORT LONG`\n", - "\n", - "Group 1 found at 146-3146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "Group 2 found at 3146-6146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "Group 3 found at 3146-6146: `SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT `\n", - "(0, 6146, 6146)\n", - "\n", - "*** Found 1 rows with output_tokens >= 2048 for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10\n", - "--------------------------------------------------\n", - "chinese: 短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "--------------------------------------------------\n", - "english: short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "--------------------------------------------------\n", - "internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10: SHORT LONG SHORT LONG SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT LONG SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SHORT SH\n", - "--------------------------------------------------\n", - "output_tokens-internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10: 2049\n", - "\n", - "*** Found 0 rows with incomplete translations for internlm/internlm2_5-7b-chat/checkpoint-140/rpp-1.10\n", - "### Analyzing: microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00\n", - "*** Found 4 rows with total_repetitions > 50 for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.00\n", - "那婆娘是个寡妇,泼得厉害。\n", - "================================================================================\n", - "The woman was a widow, a real bitch.\n", - "================================================================================\n", - "She was a widow and had a temper.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "removed excessive whitespaces: 2038\n", - "----detect text repetitions----\n", - "(2038, 0, 2038)\n", - "虽然我奶奶与他已经在高粱地里凤凰和谐,在那个半是痛苦半是幸福的庄严过程中,我奶奶虽然也怀上了我的功罪参半但毕竟是高密东北乡一代风流的父亲,但那时奶奶是单家的明媒正娶的媳妇,爷爷与她总归是桑间濮上之合,带着相当程度的随意性偶然性不稳定性,况且我父亲也没落土,所以,写到那时候的事,我还是称呼他余占鳌更为准确。\n", - "================================================================================\n", - "Even though by then he and Grandma had already done the phoenix dance in the sorghum field, and even though, in the solemn course of suffering and joy, she had conceived my father, whose life was a mixture of achievements and sin (in the final analysis, he gained distinction among his generation of citizens of Northeast Gaomi Township), she had nonetheless been legally married into the Shan family. So she and Granddad were adulterers, their relationship marked by measures of spontaneity, chance, and uncertainty. And since Father wasn't born while they were together, accuracy demands that I refer to Granddad as Yu Zhan'ao in writing about this period.\n", - "================================================================================\n", - "Even though my grandmother had been with him in the sorghum field, where she had been in a state of half-pain and half-joy, she had still been a father to me, and so I called him Yu Zhan'ao. But at that time she was the wife of a man who had been married to her for a long time, and she was the only wife of a man who had been married to her for a long time. Her husband was a man of the same generation as Yu Zhan'ao, and he had been married to her for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been married in a village in the north of the county, and they had been married for a long time. They had been\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 55-3097: `, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long`\n", - "Group 2 found at 3097-6139: `, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long`\n", - "Group 3 found at 3097-6139: `, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long`\n", - "(0, 6134, 6134)\n", - "他听到我曾外祖父舌头僵硬地说:“闺女…… 你…… 一泡尿尿了这半天……\n", - "================================================================================\n", - "He heard Great-Granddad, whose tongue had grown thick in his mouth, say: 'Daughter . . . you . . . what took you so long to take a piss? . . .\n", - "================================================================================\n", - "I heard my great-grandfather's tongue twist as he said, 'Miss . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.02\n", - "“有…… 没有…… 有…… 没有……\n", - "================================================================================\n", - "'Yes . . . no . . . yes . . . no . . .\n", - "================================================================================\n", - "'There's one... there isn't one... There's one... there isn't one...'\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1-34: `There's one... there isn't one...`\n", - "Group 2 found at 35-68: `There's one... there isn't one...`\n", - "Group 3 found at 35-68: `There's one... there isn't one...`\n", - "(0, 67, 67)\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - "Short and long, short and long, short and long, long and short, long and short, short and long, short and long, long and short, short and long, long and short, short and long, long and short, long and short, long and short, short and long, short and long, long and short, short and long, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short, long and short,\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1-17: `hort and long, s`\n", - "Group 2 found at 17-33: `hort and long, s`\n", - "Group 3 found at 17-33: `hort and long, s`\n", - "\n", - "Group 1 found at 46-62: `, long and short`\n", - "Group 2 found at 62-78: `, long and short`\n", - "Group 3 found at 62-78: `, long and short`\n", - "\n", - "Group 1 found at 78-94: `, short and long`\n", - "Group 2 found at 94-110: `, short and long`\n", - "Group 3 found at 94-110: `, short and long`\n", - "\n", - "Group 1 found at 174-190: `, long and short`\n", - "Group 2 found at 206-222: `, long and short`\n", - "Group 3 found at 206-222: `, long and short`\n", - "\n", - "Group 1 found at 222-238: `, short and long`\n", - "Group 2 found at 238-254: `, short and long`\n", - "Group 3 found at 238-254: `, short and long`\n", - " 50 for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04\n", - "\n", - "*** Found 0 rows with output_tokens >= 2048 for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04\n", - "\n", - "*** Found 0 rows with incomplete translations for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.04\n", - "### Analyzing: microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06\n", - "*** Found 1 rows with total_repetitions > 50 for microsoft/Phi-3.5-mini-instruct/checkpoint-210/rpp-1.06\n", - "老头子跪在地上,哀求道:“八路老爷饶命,八路老爷饶命……”\n", - "================================================================================\n", - "He rose to his knees and begged, 'Spare me, Eighth Route Master, spare me!'\n", - "================================================================================\n", - "The old man knelt on his knees and begged for mercy with tears in his eyes: 'Eight-Path Old Devil . . . Eight-Path Old Devil . . .'\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 804-3264: `s he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what'`\n", - "Group 2 found at 3264-5724: `s he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what'`\n", - "Group 3 found at 3264-5724: `s he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what's he want to see me for?' 'Because he wants to.''I see,'said Trinket. 'Well, I suppose that's all right then.''Yes,'said the old eunuch. 'It's all right.''But what'`\n", - "(0, 4920, 4920)\n", - "海老公道:“哼,掀住肩头有什么用?\n", - "================================================================================\n", - "'That's no good!\n", - "================================================================================\n", - " 'Humph! What's the sense in carrying it on your shoulder? he said. 'You'd better let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 83-3183: `et me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? L`\n", - "Group 2 found at 3183-6283: `et me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? L`\n", - "Group 3 found at 3183-6283: `et me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? L`\n", - "(0, 6200, 6200)\n", - "宝钗见贾环急了,便瞅了莺儿一眼,说道:“越大越没规矩!\n", - "================================================================================\n", - "Bao-chai could see that Jia Huan was rattled, and darting a sharp look at Oriole, commanded her to yield. 'You grow more unmannerly every day,' she told her.\n", - "================================================================================\n", - " Bao-chai saw that Jia Huan was getting angry and gave a little glance to Oriole. 'You're getting more and more unmannerly the older you get! she said. 'What do you want to go asking questions like that for? 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 207-3782: ` 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful.`\n", - "Group 2 found at 3782-7358: ` 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. `\n", - "Group 3 found at 3782-7357: ` 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful.`\n", - "(0, 7151, 7151)\n", - "总舵主点头道:“正是!\n", - "================================================================================\n", - "The Helmsman nodded. 'Exactly.\n", - "================================================================================\n", - " The Helmsman nodded. 'Precisely. 'That's what I meant. 'It's the way of the world. 'The way of the world. 'The way of the world... 'He seemed to be talking to himself. 'But we mustn't let it get us down. 'We must keep our chins up. 'We must keep smiling. 'We must keep smiling... 'He was smiling himself now, a rather ghastly smile. 'We must keep smiling, even in the face of death. 'That's the way to live. 'That's the way to live... 'He was smiling still, but there was a hint of sadness in his voice. 'That's the way to live... 'He seemed to be smiling at some private joke. 'That's the way to live... 'He was smiling, but his eyes were wet. 'That's the way to live... 'He was smiling, but there was a hint of pleading in his voice. 'That's the way to live... 'He was smiling, but his face was deathly pale. 'That's the way to live... 'He was smiling, but his eyes were closed. 'That's the way to live... 'He was smiling, but his breathing had stopped. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 63-86: `he way of the world. 'T`\n", - "Group 2 found at 86-109: `he way of the world. 'T`\n", - "Group 3 found at 86-109: `he way of the world. 'T`\n", - "\n", - "Group 1 found at 231-254: `. 'We must keep smiling`\n", - "Group 2 found at 254-277: `. 'We must keep smiling`\n", - "Group 3 found at 254-277: `. 'We must keep smiling`\n", - "\n", - "Group 1 found at 382-407: `. 'That's the way to live`\n", - "Group 2 found at 407-432: `. 'That's the way to live`\n", - "Group 3 found at 407-432: `. 'That's the way to live`\n", - "\n", - "Group 1 found at 954-3638: `d. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dea`\n", - "Group 2 found at 3638-6322: `d. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dea`\n", - "Group 3 found at 3638-6322: `d. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dead. 'That's the way to live... 'He was smiling, but he was dea`\n", - "(0, 5510, 5510)\n", - "黄宗羲道:“我二人来此,乃是为了二瞻先生的那位本家伊璜先生。\n", - "================================================================================\n", - "'It has to do with Erzhan's kinsman Yihuang, ' said Huang.\n", - "================================================================================\n", - " 'We have come here because of a member of Mr Erzhan's family,'said Huang. 'A Mr Ye Liang.''I know of no such person,'said the old eunuch. 'He is a cousin of Mr Erzhan's,'said Huang. 'He is now in prison.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no cousin in prison.''Then perhaps he is a more distant relative,'said Huang. 'But he is certainly a member of Mr Erzhan's family.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no relative in prison.''Then perhaps he is a friend,'said Huang. 'But he is certainly a close friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend in prison.''Then perhaps he is an acquaintance,'said Huang. 'But he is certainly an acquaintance of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no acquaintance in prison.''Then perhaps he is a guest,'said Huang. 'But he is certainly a guest of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no guest in prison.''Then perhaps he is a visitor,'said Huang. 'But he is certainly a visitor of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no visitor in prison.''Then perhaps he is a servant,'said Huang. 'But he is certainly a servant of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no servant in prison.''Then perhaps he is a slave,'said Huang. 'But he is certainly a slave of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no slave in prison.''Then perhaps he is a retainer,'said Huang. 'But he is certainly a retainer of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no retainer in prison.''Then perhaps he is a dependent,'said Huang. 'But he is certainly a dependent of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no dependent in prison.''Then perhaps he is a protégé,'said Huang. 'But he is certainly a protégé of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no protégé in prison.''Then perhaps he is a ward,'said Huang. 'But he is certainly a ward of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no ward in prison.''Then perhaps he is a client,'said Huang. 'But he is certainly a client of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no client in prison.''Then perhaps he is a hanger-on,'said Huang. 'But he is certainly a hanger-on of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no hanger-on in prison.''Then perhaps he is a follower,'said Huang. 'But he is certainly a follower of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no follower in prison.''Then perhaps he is an admirer,'said Huang. 'But he is certainly an admirer of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no admirer in prison.''Then perhaps he is a partisan,'said Huang. 'But he is certainly a partisan of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no partisan in prison.''Then perhaps he is a sympathizer,'said Huang. 'But he is certainly a sympathizer of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no sympathizer in prison.''Then perhaps he is a well-wisher,'said Huang. 'But he is certainly a well-wisher of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no well-wisher in prison.''Then perhaps he is a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend of a friend in prison.''Then perhaps he is a friend of a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of a friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend of a friend of a friend in prison.''Then perhaps he is a friend of a friend of a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of a friend of a friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend of a friend of a friend of a friend in prison.''Then perhaps he is a friend of a friend of a friend of a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of a friend of a friend of a friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend of a friend of a friend of a friend of a friend in prison.''Then perhaps he is a friend of a friend of a friend of a friend of a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of a friend of a friend of a friend of a friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend of a friend of a friend of a friend of a friend of a friend of a friend in prison.''Then perhaps he is a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend in prison.''Then perhaps he is a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of Mr Erzhan's.''I know nothing about that,'said the old eunuch. 'But I can tell you this: Mr Erzhan has no friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend in prison.''Then perhaps he is a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend,'said Huang. 'But he is certainly a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of a friend of Mr Erzhan's.''I know nothing about that, '\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 4071-4083: ` a friend of`\n", - "Group 2 found at 4083-4096: ` a friend of `\n", - "Group 3 found at 4083-4095: ` a friend of`\n", - "\n", - "Group 1 found at 4250-4262: ` a friend of`\n", - "Group 2 found at 4262-4275: ` a friend of `\n", - "Group 3 found at 4262-4274: ` a friend of`\n", - "\n", - "Group 1 found at 4317-4329: ` a friend of`\n", - "Group 2 found at 4329-4342: ` a friend of `\n", - "Group 3 found at 4329-4341: ` a friend of`\n", - "\n", - "Group 1 found at 4458-4470: ` friend of a`\n", - "Group 2 found at 4470-4483: ` friend of a `\n", - "Group 3 found at 4470-4482: ` friend of a`\n", - "\n", - "Group 1 found at 4520-4532: ` a friend of`\n", - "Group 2 found at 4532-4545: ` a friend of `\n", - "Group 3 found at 4532-4544: ` a friend of`\n", - "\n", - "Group 1 found at 4752-4764: ` friend of a`\n", - "Group 2 found at 4764-4777: ` friend of a `\n", - "Group 3 found at 4764-4776: ` friend of a`\n", - "\n", - "Group 1 found at 4917-4941: ` a friend of a friend of`\n", - "Group 2 found at 4941-4966: ` a friend of a friend of `\n", - "Group 3 found at 4941-4965: ` a friend of a friend of`\n", - "\n", - "Group 1 found at 5168-5192: ` a friend of a friend of`\n", - "Group 2 found at 5192-5217: ` a friend of a friend of `\n", - "Group 3 found at 5192-5216: ` a friend of a friend of`\n", - "\n", - "Group 1 found at 5448-5484: ` friend of a friend of a friend of a`\n", - "Group 2 found at 5484-5521: ` friend of a friend of a friend of a `\n", - "Group 3 found at 5484-5520: ` friend of a friend of a friend of a`\n", - "\n", - "Group 1 found at 5685-5733: ` a friend of a friend of a friend of a friend of`\n", - "Group 2 found at 5733-5782: ` a friend of a friend of a friend of a friend of `\n", - "Group 3 found at 5733-5781: ` a friend of a friend of a friend of a friend of`\n", - "\n", - "Group 1 found at 6020-6068: ` a friend of a friend of a friend of a friend of`\n", - "Group 2 found at 6068-6117: ` a friend of a friend of a friend of a friend of `\n", - "Group 3 found at 6068-6116: ` a friend of a friend of a friend of a friend of`\n", - "\n", - "Group 1 found at 6396-6456: ` friend of a friend of a friend of a friend of a friend of a`\n", - "Group 2 found at 6456-6517: ` friend of a friend of a friend of a friend of a friend of a `\n", - "Group 3 found at 6456-6516: ` friend of a friend of a friend of a friend of a friend of a`\n", - "\n", - "Group 1 found at 6729-6801: ` a friend of a friend of a friend of a friend of a friend of a friend of`\n", - "Group 2 found at 6801-6874: ` a friend of a friend of a friend of a friend of a friend of a friend of `\n", - "Group 3 found at 6801-6873: ` a friend of a friend of a friend of a friend of a friend of a friend of`\n", - "(0, 1413, 1413)\n", - "海老公道:“这小娃娃叫什么名字?\n", - "================================================================================\n", - "'What was the little fellow's name?\n", - "================================================================================\n", - " 'What's the little blighter's name?' said the old eunuch. 'Howsomever, I suppose it don't matter. 'Tis a long time since I've seen a child so young. 'Tis a pity he's a boy. If he were a girl, I could have taken him in with me. I could have brought him up as a maid-in-waiting. 'Twould have been a good thing for him. 'Twould have been a good thing for me. 'Twould have been a good thing for everyone. 'Tis a pity he's a boy. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. '\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 423-2503: `y. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pit`\n", - "Group 2 found at 2503-4583: `y. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pit`\n", - "Group 3 found at 2503-4583: `y. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pit`\n", - "(0, 4160, 4160)\n", - "“在,大叔,长得好好的,就是耳朵流血啦。”\n", - "================================================================================\n", - "'It's there, Uncle, right where it's supposed to be. Except your ear's bleeding.'\n", - "================================================================================\n", - " 'Yes, Uncle. I'm fine, except my ear is bleeding.' 'I see. Well, just stay there for a while. I'll be right there.' 'Yes, Uncle.' 'And don't move around too much. You might make it worse.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 187-3247: `.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him`\n", - "Group 2 found at 3247-6307: `.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him`\n", - "Group 3 found at 3247-6307: `.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him`\n", - "(0, 6120, 6120)\n", - "石头听了大喜,因问:“不知可镌何字?\n", - "================================================================================\n", - "The stone was delighted. 'What words will you cut?\n", - "================================================================================\n", - " Hearing this, the stone was overjoyed and asked, 'What words are you going to carve on me?''The words 'Vanitas Vanitatum'!'said the monk. 'What do they mean?'said the stone. 'They mean 'All is vanity'.''But why should you want to carve those words on me?'said the stone. 'Because your name is 'Vanitas','said the monk. 'I have never heard of a stone called 'Vanitas' before,'said the stone. 'It is a foreign word,'said the monk. 'It is the name of a planet in the West.''I have never heard of a planet called 'Vanitas' either,'said the stone. 'It is a new planet,'said the monk. 'It has only recently been discovered.''I see,'said the stone. 'Well, I suppose it is very nice to have a planet named after me.''Yes,'said the monk. 'It is very nice.''But what is this planet like?'said the stone. 'Is it a nice planet?''It is very beautiful,'said the monk. 'It is covered with flowers and trees.''I see,'said the stone. 'Well, I hope the people who live on it will be happy.''There are no people on it,'said the monk. 'Only flowers and trees.''I see,'said the stone. 'Well, I hope the flowers and trees will be happy.''They are very happy,'said the monk. 'They are always smiling.''I see,'said the stone. 'Well, I hope they will always be smiling.''They will always be smiling,'said the monk. 'They will always be happy.''I see,'said the stone. 'Well, I am very happy too.''I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too, '\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1371-3921: `'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. `\n", - "Group 2 found at 3921-6471: `'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. `\n", - "Group 3 found at 3921-6471: `'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. 'I am very happy too,'said the monk. 'I am very happy too,'said the stone. `\n", - "(0, 5100, 5100)\n", - "宝玉会意,忽听“唿”一声帘子响,晴雯又跑进来问道:“我怎么磨牙了?\n", - "================================================================================\n", - "Bao-yu took her meaning; but it was too late. With another swish of the door-blind, Skybright had already darted in again. 'Oh! Sharp-tongued, am I?\n", - "================================================================================\n", - " Bao-yu understood that he was being asked to go to bed. Just then there was a sudden swish of the door-blind and Skybright came running in again. 'What are you doing? Grinding your teeth? he said. 'You'd better go to bed! 'And she pulled the bed-curtains open for him. 'Come along! Get in! 'She said. 'I'll tuck you up! 'And she proceeded to do so. 'Now, now! Don't fidget! 'She said. 'Just go to sleep! 'And she drew the bed-curtains tightly round him. 'There! 'She said. 'Now you can sleep! 'And she went out again. Bao-yu lay there for a long time, but he could not get to sleep. He heard the women all go off to bed, one after another, and the room grew quiet. Then, after a long while, he heard the sound of the watchman's rattle outside and the call of the night-watchman in the distance. He was still lying there wide awake when he heard the first light of dawn announced by the cawing of the crows in the garden. Then, just as he was beginning to doze off, he was startled by a sudden noise. It sounded like a loud, shrill laugh. He sat up in bed and listened. The laugh was followed by a sound of weeping. He threw off his coverlet and got out of bed. The room was still dark, but he could just make out the form of a woman in tears. It was Skybright. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She stood there in the darkness, weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She stood there in the darkness, weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1260-1768: `. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She stood there in the darkness, weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping`\n", - "Group 2 found at 1768-2276: `. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She stood there in the darkness, weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping`\n", - "Group 3 found at 1768-2276: `. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She stood there in the darkness, weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping`\n", - "\n", - "Group 1 found at 2276-4736: `. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping`\n", - "Group 2 found at 4736-7196: `. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping`\n", - "Group 3 found at 4736-7196: `. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping`\n", - "(0, 5936, 5936)\n", - "周瑞家的道:“我的娘!\n", - "================================================================================\n", - "'My dear good woman,' said the latter when they were out of earshot, 'whatever came over you?\n", - "================================================================================\n", - " 'My mother!' said Zhou Rui's wife. 'What are you talking about? It's only a bit of fun. You're not going to die because of it. Come on! Let's go! We'll take you along with us. You can be one of the girls. No one will mind. Just for fun! Come on! We'll take you along!'' She reached out and took hold of Blossom's hand. 'Come on! Let's go! It'll be fun!'' She pulled Blossom to her feet and the two of them set off, with the other girls following after them. As they went, they sang: 'We're going to see the play, We're going to see the play!'' and 'We're going to see the show, We're going to see the show!'' and other such songs. Blossom went with them, still in a daze. She had no idea where they were taking her. She had never been outside the Garden before. She had never seen a theatre. She had never seen a play. She had never seen a man. She had never seen a woman. She had never seen a child. She had never seen a dog. She had never seen a cat. She had never seen a chicken. She had never seen a cow. She had never seen a horse. She had never seen a pig. She had never seen a sheep. She had never seen a goat. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 510-2756: `.''It's because she's so proud,'said Aroma. 'She thinks she's better than any of us.''Yes, that's it,'said Bao-yu. 'She's very proud.''I'm not proud,'said Skybright, re-entering the room. 'It's just that I don't like being taken advantage of.''No one is taking advantage of you,'said Aroma. 'What are you talking about?''I'm talking about my money,'said Skybright. 'I lent you five cash to buy that hand-warmer with, and you haven't given it me back yet.''I'll give it you back presently,'said Aroma. 'I haven't forgotten.''I'm not in a hurry,'said Skybright. 'Only I don't want to have to ask you again.''I promise I won't forget,'said Aroma. 'I'll give it you back this afternoon.''All right,'said Skybright. 'I'll wait till this afternoon.'And she went out again. 'She's a bit of a handful, that one,'said Dai-ru. 'Yes,'said Bao-yu. 'She's a bit of a handful.''She's always like that,'said Aroma. 'Always finding fault.''Yes,'said Bao-yu. 'She's always finding fault.''I don't know what's the matter with her,'said Dai-ru. 'She's been like that lately. Always in a temper.''I know,'said Bao-yu. 'She's always in a temper.''It's because she's so proud,'said Aroma. 'She thinks she's better than any of us.''Yes, that's it,'said Bao-yu. 'She's very proud.''I'm not proud,'said Skybright, re-entering the room. 'It's just that I don't like being taken advantage of.''No one is taking advantage of you,'said Aroma. 'What are you talking about?''I'm talking about my money,'said Skybright. 'I lent you five cash to buy that hand-warmer with, and you haven't given it me back yet.''I'll give it you back presently,'said Aroma. 'I haven't forgotten.''I'm not in a hurry,'said Skybright. 'Only I don't want to have to ask you again.''I promise I won't forget,'said Aroma. 'I'll give it you back this afternoon.''All right,'said Skybright. 'I'll wait till this afternoon.'And she went out again. 'She's a bit of a handful, that one,'said Dai-ru. 'Yes,'said Bao-yu. 'She's a bit of a handful.''She's always like that,'said Aroma. 'Always finding fault.''Yes,'said Bao-yu. 'She's always finding fault.''I don't know what's the matter with her,'said Dai-ru. 'She's been like that lately. Always in a temper.''I know,'said Bao-yu. 'She's always in a temper`\n", - "Group 2 found at 2756-5002: `.''It's because she's so proud,'said Aroma. 'She thinks she's better than any of us.''Yes, that's it,'said Bao-yu. 'She's very proud.''I'm not proud,'said Skybright, re-entering the room. 'It's just that I don't like being taken advantage of.''No one is taking advantage of you,'said Aroma. 'What are you talking about?''I'm talking about my money,'said Skybright. 'I lent you five cash to buy that hand-warmer with, and you haven't given it me back yet.''I'll give it you back presently,'said Aroma. 'I haven't forgotten.''I'm not in a hurry,'said Skybright. 'Only I don't want to have to ask you again.''I promise I won't forget,'said Aroma. 'I'll give it you back this afternoon.''All right,'said Skybright. 'I'll wait till this afternoon.'And she went out again. 'She's a bit of a handful, that one,'said Dai-ru. 'Yes,'said Bao-yu. 'She's a bit of a handful.''She's always like that,'said Aroma. 'Always finding fault.''Yes,'said Bao-yu. 'She's always finding fault.''I don't know what's the matter with her,'said Dai-ru. 'She's been like that lately. Always in a temper.''I know,'said Bao-yu. 'She's always in a temper.''It's because she's so proud,'said Aroma. 'She thinks she's better than any of us.''Yes, that's it,'said Bao-yu. 'She's very proud.''I'm not proud,'said Skybright, re-entering the room. 'It's just that I don't like being taken advantage of.''No one is taking advantage of you,'said Aroma. 'What are you talking about?''I'm talking about my money,'said Skybright. 'I lent you five cash to buy that hand-warmer with, and you haven't given it me back yet.''I'll give it you back presently,'said Aroma. 'I haven't forgotten.''I'm not in a hurry,'said Skybright. 'Only I don't want to have to ask you again.''I promise I won't forget,'said Aroma. 'I'll give it you back this afternoon.''All right,'said Skybright. 'I'll wait till this afternoon.'And she went out again. 'She's a bit of a handful, that one,'said Dai-ru. 'Yes,'said Bao-yu. 'She's a bit of a handful.''She's always like that,'said Aroma. 'Always finding fault.''Yes,'said Bao-yu. 'She's always finding fault.''I don't know what's the matter with her,'said Dai-ru. 'She's been like that lately. Always in a temper.''I know,'said Bao-yu. 'She's always in a temper`\n", - "Group 3 found at 2756-5002: `.''It's because she's so proud,'said Aroma. 'She thinks she's better than any of us.''Yes, that's it,'said Bao-yu. 'She's very proud.''I'm not proud,'said Skybright, re-entering the room. 'It's just that I don't like being taken advantage of.''No one is taking advantage of you,'said Aroma. 'What are you talking about?''I'm talking about my money,'said Skybright. 'I lent you five cash to buy that hand-warmer with, and you haven't given it me back yet.''I'll give it you back presently,'said Aroma. 'I haven't forgotten.''I'm not in a hurry,'said Skybright. 'Only I don't want to have to ask you again.''I promise I won't forget,'said Aroma. 'I'll give it you back this afternoon.''All right,'said Skybright. 'I'll wait till this afternoon.'And she went out again. 'She's a bit of a handful, that one,'said Dai-ru. 'Yes,'said Bao-yu. 'She's a bit of a handful.''She's always like that,'said Aroma. 'Always finding fault.''Yes,'said Bao-yu. 'She's always finding fault.''I don't know what's the matter with her,'said Dai-ru. 'She's been like that lately. Always in a temper.''I know,'said Bao-yu. 'She's always in a temper.''It's because she's so proud,'said Aroma. 'She thinks she's better than any of us.''Yes, that's it,'said Bao-yu. 'She's very proud.''I'm not proud,'said Skybright, re-entering the room. 'It's just that I don't like being taken advantage of.''No one is taking advantage of you,'said Aroma. 'What are you talking about?''I'm talking about my money,'said Skybright. 'I lent you five cash to buy that hand-warmer with, and you haven't given it me back yet.''I'll give it you back presently,'said Aroma. 'I haven't forgotten.''I'm not in a hurry,'said Skybright. 'Only I don't want to have to ask you again.''I promise I won't forget,'said Aroma. 'I'll give it you back this afternoon.''All right,'said Skybright. 'I'll wait till this afternoon.'And she went out again. 'She's a bit of a handful, that one,'said Dai-ru. 'Yes,'said Bao-yu. 'She's a bit of a handful.''She's always like that,'said Aroma. 'Always finding fault.''Yes,'said Bao-yu. 'She's always finding fault.''I don't know what's the matter with her,'said Dai-ru. 'She's been like that lately. Always in a temper.''I know,'said Bao-yu. 'She's always in a temper`\n", - "(0, 4492, 4492)\n", - "蕊初道:“花园里有大海龟吗?\n", - "================================================================================\n", - "'I didn't know there were any in the Palace,' said Blossom.\n", - "================================================================================\n", - " 'Are there turtles in the garden?' Blossom asked. 'Yes,'said Nightingale. 'There are. In the pond.''I've never seen any,'said Blossom. 'I expect they hide themselves,'said Nightingale. 'They are very timid.''I'd love to see one,'said Blossom. 'I'll take you to see one,'said Nightingale. 'But you'll have to be very quiet. If you frighten it, it will hide itself.''I'll be very quiet,'said Blossom. 'Come on then,'said Nightingale. 'But you'll have to carry me. I'm too tired to walk.'Blossom lifted her up and carried her to the pond. 'There,'said Nightingale, pointing. 'Look! There it is!'Blossom looked, but all she could see was a lot of water plants. 'Where?' she said. 'There,'said Nightingale. 'Under the water plants.'Blossom looked again, but she couldn't see anything. 'I can't see anything,'she said. 'You'll have to look more carefully,'said Nightingale. 'It's under the big leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 888-4232: ` leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the`\n", - "Group 2 found at 4232-7577: ` leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the `\n", - "Group 3 found at 4232-7576: ` leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the leaf.'Blossom looked again, but she still couldn't see anything. 'I still can't see anything,'she said. 'You're not looking carefully enough,'said Nightingale. 'Look under the`\n", - "(0, 6689, 6689)\n", - "韦小宝毛骨悚然,道:“我…… 我以为你不爱喝汤。\n", - "================================================================================\n", - "Trinket could feel his skin crawling. 'But. . . but... I thought you didn't like soup,' he said.\n", - "================================================================================\n", - " Trinket shivered. 'I... I thought you didn't like soup.'he said. 'I didn't want to force you.''Force me?'said the Helmsman. 'I like it all right.''Then why...?' 'Because I'm a Muslim,'said the Helmsman. 'We don't eat pork.''Oh,'said Trinket. 'I see.''Yes,'said the Helmsman. 'And I don't like being reminded of it.''I'm sorry,'said Trinket. 'I didn't know.''Never mind,'said the Helmsman. 'It's all right.''I'll tell them to make you some chicken soup,'said Trinket. 'No, no,'said the Helmsman. 'It's all right. I'll just have some rice.''I'll tell them to bring you some rice,'said Trinket. 'No, no,'said the Helmsman. 'I'll go and get some for myself.''Let me go for you,'said Trinket. 'No, no,'said the Helmsman. 'I'll go myself.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 732-3306: `.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape`\n", - "Group 2 found at 3306-5880: `.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape`\n", - "Group 3 found at 3306-5880: `.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape.''All right,'said Trinket. 'But you've got to promise me not to try to escape.''I promise,'said the Helmsman. 'I promise I won't try to escape`\n", - "(0, 5148, 5148)\n", - "吕留良提笔沉吟半晌,便在画上振笔直书。 顷刻诗成,诗云:\n", - "================================================================================\n", - "He picked up a writing-brush and for some minutes could be observed muttering to himself in the throes of composition; then, writing straight on to the painting and with pauses only for moistening the brush, he quickly completed the following poem:\n", - "================================================================================\n", - " Lü held his brush suspended for a long time, then wrote the following poem on the painting: 'The peach tree blossoms, a delicate pink, 'The willow's new leaves, a fresh green. 'The oriole's song is heard, 'The swallows are back again. 'The spring wind stirs, 'The grass is wet with dew. 'The night is half gone, 'The moon is high. 'The night is half gone, 'The watchman is calling the hour. 'The night is half gone, 'The scholar is still sitting and thinking. 'The night is half gone, 'The night is half gone.... 'But where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? '\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 520-3680: `here is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'W`\n", - "Group 2 found at 3680-6840: `here is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'W`\n", - "Group 3 found at 3680-6840: `here is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'Where is my youth? 'W`\n", - "(0, 6320, 6320)\n", - "海老公脸一沉,说道:“借给老吴这小子有什么用?\n", - "================================================================================\n", - "Old Hai scowled at him. 'What do you want to go lending money to that Wu fellow for?\n", - "================================================================================\n", - " The old eunuch's face fell. 'What's the sense in lending it to the little bastard? he said. 'He's only going to lose it again. 'I'm not going to lend it to him,'he said. 'I'm going to give it to him. 'And then he took the money out of his pocket and handed it to Wu Peizhen. 'Here you are,'he said. 'I'm giving you this to help you on your way. 'But you've got to promise me one thing. 'You've got to promise me that you'll never come back here again. 'If you do, I'll kill you. 'I mean it. 'I'll kill you.'Wu Peizhen took the money and promised that he would never come back. The old eunuch saw him to the door and let him out. Wu Peizhen went down the steps and out into the street. The old eunuch went back to his room and sat down again. He was smiling. He had tricked Wu Peizhen. He had tricked him into going away. He was smiling as he sat there. Then he heard a noise. It was Wu Peizhen. He had come back. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal a book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time.\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1423-3415: ` book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another`\n", - "Group 2 found at 3415-5408: ` book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another `\n", - "Group 3 found at 3415-5407: ` book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another book for me.'Wu Peizhen said that he would do it. The old eunuch gave him the key to the Upper Library and Wu Peizhen went off. He went to the Upper Library and stole the book. Then he came back and gave it to the old eunuch. The old eunuch took the book and thanked him. Then he gave him some more money. Wu Peizhen took the money and went out. The old eunuch sat down and began to read the book. He read the book for a long time. Then he heard a noise. It was Wu Peizhen again. The old eunuch's face fell. 'I told you not to come back,'he said. 'I'm going to kill you.'Wu Peizhen fell on his knees. 'Please don't kill me,'he said. 'I've got nowhere else to go.'The old eunuch looked at him. He looked at him for a long time. Then he said, 'All right. 'I'm not going to kill you. 'But you've got to do something for me. 'You've got to do something for me, or I'll kill you.'Wu Peizhen said that he would do anything. The old eunuch said, 'I want you to go to the Upper Library and steal another`\n", - "(0, 3985, 3985)\n", - "周瑞家的听了,便已猜着几分来意。 只因他丈夫昔年争买田地一事,多得狗儿他父亲之力,今见刘姥姥如此,心中难却其意;二则也要显弄自己的体面。 便笑说:“老老你放心。\n", - "================================================================================\n", - "From the tone of this reply Zhou Rui's wife was already able to make a pretty good guess as to the real purpose of the old woman's visit; but because some years previously her husband had received a lot of help from Gou-er's father in a dispute over the purchase of some land, she could not very well reject Grannie Liu now, when she came to her as a suppliant. She was, in any case, anxious to demonstrate her own importance in the Jia household; and so the answer she gave her was a gracious one. 'Don't you worry, Grannie!\n", - "================================================================================\n", - " Zhou Rui's wife had by now a shrewd idea of what was in the old lady's mind. Her husband had, in the old days, been helped by Gou-er's father in his lawsuits over the purchase of land, and she felt that she could not refuse the old lady's request. Besides, she wanted to show off in front of her. So she smiled and said: 'Now, now, Grannie, don't you go worrying! We'll do all we can to help. 'Tis our duty. 'Tis what we ought to do. 'Tis what we want to do. 'Tis what we will do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 475-3212: `ll do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we sha`\n", - "Group 2 found at 3212-5949: `ll do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we sha`\n", - "Group 3 found at 3212-5949: `ll do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we sha`\n", - "(0, 5474, 5474)\n", - "老子就吃过。”\n", - "================================================================================\n", - "Do try some, it's delicious!'\n", - "================================================================================\n", - " I've had my supper.' 'Old Colour, you're a liar. You haven't had supper yet.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' '\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 75-2875: `t.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven'`\n", - "Group 2 found at 2875-5675: `t.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven'`\n", - "Group 3 found at 2875-5675: `t.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven'`\n", - "(0, 5600, 5600)\n", - "宝玉笑道:“给你个榧子吃呢!\n", - "================================================================================\n", - "Bao-yu laughed and snapped his fingers at her: 'Put that on your tongue, girl!\n", - "================================================================================\n", - " 'I'll give you a button!' said Bao-yu, laughing. 'Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 415-3301: `Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! `\n", - "Group 2 found at 3301-6187: `Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! `\n", - "Group 3 found at 3301-6187: `Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! `\n", - "(0, 6136, 6136)\n", - "韦小宝哈哈大笑,道:“老乌龟便是海老公,他名字叫作海大富。\n", - "================================================================================\n", - "Trinket burst out laughing. 'Old Devil is what I used to call the old eunuch Hai-goong—among other things. His real name was Hai Dafu.\n", - "================================================================================\n", - " 'Old Turtle,'said Trinket, 'is the eunuch's real name, Hai Dafu.'He burst out laughing. 'Hai the Old Devil!'he chuckled. 'Hai the Rich!'He was enjoying himself. 'Hai the eunuch!'he said again. 'Hai the Old Turtle!'He was in hysterics. 'Hai the Old Devil!'he said once more. 'Hai the Turtle!'He was crying with laughter. 'Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 321-2657: `'Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!'`\n", - "Group 2 found at 2657-4993: `'Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!'`\n", - "Group 3 found at 2657-4993: `'Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!''Hai the Rich!''Hai the Old Turtle!''Hai the Old Devil!''Hai the Turtle!'`\n", - "(0, 4672, 4672)\n", - "韦小宝暗暗叫苦:“原来做太监要净身,那就是割去小便的东西。\n", - "================================================================================\n", - "Trinket was horrified. 'So that's what being 'purified' means: having your piss-pipe and the other bits cut off.\n", - "================================================================================\n", - " Trinket groaned inwardly. So that was what they meant by 'purification'! It meant cutting off your prick! He had heard of it, of course, but never imagined that it could happen to him. 'No, no, no! I'd rather die! I'd rather die! I'd rather die! he muttered to himself, over and over again. 'I'd rather die! I'd rather die! I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 197-213: `! I'd rather die`\n", - "Group 2 found at 229-245: `! I'd rather die`\n", - "Group 3 found at 229-245: `! I'd rather die`\n", - "\n", - "Group 1 found at 293-309: `I'd rather die! `\n", - "Group 2 found at 325-341: `I'd rather die! `\n", - "Group 3 found at 325-341: `I'd rather die! `\n", - "\n", - "Group 1 found at 341-3095: `'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! `\n", - "Group 2 found at 3095-5849: `'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! `\n", - "Group 3 found at 3095-5849: `'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! `\n", - "(0, 5604, 5604)\n", - "刘姥姥道:“我也知道。\n", - "================================================================================\n", - "'I knew all about that,' said Grannie Liu.\n", - "================================================================================\n", - " 'I know that,' said Grannie Liu. 'But I was wondering if you could help me. I've got a bit of a problem on my hands. My granddaughter's husband has gone off to the capital and she's in a terrible state about it. I was wondering if you could put in a word for her. She's a very capable girl. She could help you with your work. And she's very good-looking, too. She's a real beauty. I'm sure you'd like her.''I see,' said the old eunuch. 'Well, I'll do what I can. But I can't promise anything.''I knew you'd help me,' said Grannie Liu. 'I knew you were a kind man. I'll bring her round tomorrow.''Very well,' said the old eunuch. 'Tomorrow, then. But I must warn you, I can't promise anything.''I know you can't,' said Grannie Liu. 'But I knew you'd help me. I knew you were a kind man.''Well, I'll do what I can,' said the old eunuch. 'But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 837-3613: `But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. `\n", - "Group 2 found at 3613-6389: `But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. `\n", - "Group 3 found at 3613-6389: `But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. But I must say, I'm a bit surprised. I didn't know you had a granddaughter.''Oh, yes,' said Grannie Liu. 'I've got a granddaughter. And a grandson. And a great-granddaughter. And a great-grandson.''Ah,' said the old eunuch. 'I see.''Yes,' said Grannie Liu. 'I've got a big family.''I can see that,' said the old eunuch. 'Well, I'll do what I can. `\n", - "(0, 5552, 5552)\n", - "将她抱起,坐在椅上,说道:“你瞧着,我在你身上各个部位指点,倘若指得对的,你就眨三下眼睛,指得不对,眼睛睁得大大的,一动也不能动。\n", - "================================================================================\n", - "He lifted her up in his arms and sat her down in a chair. 'Now look,' he said, 'I'm going to start pointing to places on your body. If I point to the right place, blink three times; if it isn't right, just keep your eyes open and don't move.\n", - "================================================================================\n", - " He lifted her up and sat her in a chair. 'Now, I'm going to point to different parts of your body. If I point to the right place, you blink your eyes three times; if I don't, you keep them wide open and perfectly still. Understand? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她���起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指��了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 232-1537: ` Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗?`\n", - "Group 2 found at 1537-2843: ` Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,���动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? `\n", - "Group 3 found at 1537-2842: ` Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗?`\n", - "(0, 2611, 2611)\n", - "成麻子逢人便说:“你们怕什么? 愁什么?\n", - "================================================================================\n", - "'What are you afraid of?' Pocky Cheng asked everyone he met.\n", - "================================================================================\n", - " Pocky Cheng would say to everyone he met: 'What are you afraid of? What are you worried about? 'There's nothing to be afraid of. 'There's nothing to worry about. 'It's all the same, whether you live or die. 'It's all the same, whether you have something or nothing. 'You'll see. 'Just wait and see. 'Everything will be the same. 'You'll see. 'It's all the same. 'It's all the same. 'It's all the same....\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 340-360: `e. 'It's all the sam`\n", - "Group 2 found at 380-400: `e. 'It's all the sam`\n", - "Group 3 found at 380-400: `e. 'It's all the sam`\n", - "(0, 60, 60)\n", - "韦小宝大喜,来不及装饭,夹起一块红烧肉便吃,虽然菜肴早已冷了,吞入饥肠,却是说不出的美味,心想:“这些饭菜不知是谁送来的。\n", - "================================================================================\n", - "Trinket was delighted, and without bothering to fill his bowl with rice, he attacked a dish of stewed meat. The food was cold, but he was hungry, and to him it was indescribably delicious. 'I wonder where they get the food from?\n", - "================================================================================\n", - " Trinket was so pleased that he did not even bother to serve himself a plateful, but simply picked up a piece of the cold meat in his fingers and popped it into his mouth. It was delicious. 'I wonder who sent this,' he thought. 'It's very nice of them. 'Then he remembered that he had asked Whiskers to get him some food. 'It must have been Whiskers,' he thought. 'I hope he didn't steal it. 'But then he thought of something else. 'I hope he didn't go to the Helmsman's place. 'He was just starting to worry about this, when there was a knock at the door. 'Come in!' he said. 'It's me, Whiskers,' said the voice outside. 'I've brought you some pickles. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1000-1180: `. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery`\n", - "Group 2 found at 1180-1360: `. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery`\n", - "Group 3 found at 1180-1360: `. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery`\n", - "\n", - "Group 1 found at 1360-4000: `. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery`\n", - "Group 2 found at 4000-6640: `. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery`\n", - "Group 3 found at 4000-6640: `. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery`\n", - "(0, 5640, 5640)\n", - "韦小宝道:“今儿我赌了钱回来,遇到一个小…… 小太监,拦住了路,要我分钱给他,我不肯,他就跟我比武,说道我胜得过他,才放我走。\n", - "================================================================================\n", - "'Well, after today's game, I met this . . . little eunuch, who stood in my way and asked me to give him some of my winnings. I wouldn't, so we ended up fighting.\n", - "================================================================================\n", - " 'I was coming back from gambling today when I met this little... this little eunuch who barred my way and wanted me to give him some money. I refused, so he said he'd let me go if I could beat him in a fight. So I fought him. And I beat him. And he let me go. That's all.''I see,'said the Helmsman. 'Well, you'd better come with me.'And he led Trinket off to the Upper Library. The little eunuch was waiting for them there. 'This is the boy,'said the Helmsman. 'He says he beat you in a fight.''Yes,'said the little eunuch. 'He did.''Well, what do you want me to do with him?' 'I want you to punish him,'said the little eunuch. 'He beat me up.''All right,'said the Helmsman. 'I'll punish him. But first I want to know what you were doing when you met him.''I was on my way to the Upper Library to report.''And what were you doing when you met him?' he asked Trinket. 'I was on my way to the Upper Library to report.''I see,'said the Helmsman. 'Well, it seems to me that you were both on the same errand. Why did you want to fight each other?' 'I didn't want to fight him,'said the little eunuch. 'He wanted to fight me.''No, I didn't,'said Trinket. 'He wanted to fight me.''I see,'said the Helmsman. 'Well, I think I know what we'd better do. You'd better fight each other again.''Yes,'said the little eunuch. 'I'll fight him again.''No,'said Trinket. 'I don't want to fight him again.''I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1387-3787: `'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. `\n", - "Group 2 found at 3787-6187: `'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. `\n", - "Group 3 found at 3787-6187: `'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. 'I'm afraid you'll have to,'said the Helmsman. 'It's the only way we can find out who's the better man.''But I don't want to fight him,'said Trinket. `\n", - "(0, 4800, 4800)\n", - "顾炎武道:“此诗结得甚妙!\n", - "================================================================================\n", - "'Your conclusion is excellent, ' said Gu.\n", - "================================================================================\n", - " 'The poem ends very well,'said Gu. 'I like the way it rounds off.''Yes,'said Huang, 'the whole thing is very well constructed.''I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 128-3173: `'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. `\n", - "Group 2 found at 3173-6218: `'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. `\n", - "Group 3 found at 3173-6218: `'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. 'I think it is a very good poem,'said Gu. 'I think it is a very good poem,'said Huang. `\n", - "(0, 6090, 6090)\n", - "顾炎武举起酒杯,高声吟道:\n", - "================================================================================\n", - "Gu Yanwu raised his wine-cup and, in ringing tones, recited the following couplet:\n", - "================================================================================\n", - " Gu Yanwu raised his cup and recited in a loud voice: 'When a man's heart is sore, 'Tis wine that he desires. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. '\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 108-4140: `. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow`\n", - "Group 2 found at 4140-8172: `. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow`\n", - "Group 3 found at 4140-8172: `. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow`\n", - "(0, 8064, 8064)\n", - "凤姐道:“正是呢。\n", - "================================================================================\n", - "'Yes, indeed!' said Xi-feng.\n", - "================================================================================\n", - " 'That's it,' said Xi-feng. 'That's what I meant. 'Tis the season of the falling leaves. The trees are bare. The flowers are all gone. It is a time of decay and death. 'Tis the very image of human life. 'Tis a season of decline and fall. 'Tis the time of year when the grasshopper's wing is bare. 'Tis the time of year when the tree can be mistaken for a withered stick. 'Tis the time of year when the man is like the tree. 'Tis the time of year when the tree is like the man. 'Tis the time of year when the tree and the man are alike. 'Tis the time of year when the tree and the man are one. 'Tis the time of year when the tree and the man are the same. 'Tis the time of year when the tree and the man are indistinguishable. 'Tis the time of year when the tree and the man are as one. 'Tis the time of year when the tree and the man are one and the same. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 854-4254: `. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing`\n", - "Group 2 found at 4254-7654: `. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing`\n", - "Group 3 found at 4254-7654: `. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing`\n", - "(0, 6800, 6800)\n", - "海老公摇头道:“好什么?\n", - "================================================================================\n", - "'Better?' said the old eunuch shaking his head.\n", - "================================================================================\n", - " 'What's good about it? said the old eunuch, shaking his head. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business.\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 61-3686: `. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business`\n", - "Group 2 found at 3686-7311: `. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business`\n", - "Group 3 found at 3686-7311: `. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business`\n", - "(0, 7250, 7250)\n", - "周瑞家的认了半日,方笑道:“刘姥姥,你好?\n", - "================================================================================\n", - "Zhou Rui's wife scrutinized her questioningly for some moments before finally recognizing her. 'Why, it's Grannie Liu! How are you?\n", - "================================================================================\n", - " Grannie Liu! How are you? It's such a long time since we've seen you!'Zhou Rui's wife said, after a moment's scrutiny. 'How are you?'she added, smiling. 'It's such a long time since we've seen you!''I'm very well, thank you, my dear,'said Grannie Liu. 'I hope you are.''Oh, I'm very well,'said Zhou Rui's wife. 'But I say, what brings you here?''I've come to see Her Old Ladyship,'said Grannie Liu. 'I've brought some eggs and a couple of chickens for her.''Oh really?'said Zhou Rui's wife. 'Well, you'd better come inside then.'She led the way into the courtyard and through the gate of the inner courtyard, and Grannie Liu followed her, carrying her basket. 'I'll go in and tell Her Old Ladyship you're here,'said Zhou Rui's wife. 'You wait here.'She went into the study and announced Grannie Liu's arrival. Lady Jia told her to bring her in. Zhou Rui's wife returned to the courtyard and said, 'Her Old Ladyship says you can go in.'Grannie Liu followed her into the study. Lady Jia was sitting on the kang, and Grannie Liu went up to her and kotowed. 'I hope you are quite better now, Your Ladyship,'she said. 'I heard you had been very ill.''I'm a bit better now, thank you, Grannie,'said Lady Jia. 'But I'm still very weak.''I've brought you some eggs,'said Grannie Liu. 'I hope you'll eat them.''Thank you, Grannie,'said Lady Jia. 'I'm sure they are very nice.'She told Zhou Rui's wife to take the eggs and put them in the kitchen. 'And I've brought you a couple of chickens,'said Grannie Liu. 'I hope you'll accept them.''Thank you, Grannie,'said Lady Jia. 'That's very kind of you.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1589-3839: `.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much`\n", - "Group 2 found at 3839-6089: `.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much`\n", - "Group 3 found at 3839-6089: `.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much.''I hope you'll eat them,'said Grannie Liu. 'I hope you'll eat them.''I'm sure we shall,'said Lady Jia. 'Thank you very much`\n", - "(0, 4500, 4500)\n", - "薛蟠道:“要不是,我也不敢惊动:只因下月初三日,是我的生日,谁知老胡和老程他们,不知那里寻了来的:这么粗,这么长,粉脆的鲜藕;这么大的西瓜;这么长,这么大的暹罗国进贡的灵柏香熏的暹罗猪、鱼。\n", - "================================================================================\n", - "'Look,' said Xue Pan. 'I wouldn't have troubled you otherwise, only it's my birthday on the third of next month and old Hu and old Cheng and a couple of the others, I don't know where they got them from but they've given me: a piece of fresh lotus root, ever so crisp and crunchy, as thick as that, look, and as long as that; a huge great melon, look, as big as that; a freshly-caught sturgeon as big as that; and a cypress-smoked Siamese sucking-pig as big as that that came in the tribute from Siam.\n", - "================================================================================\n", - " 'I wouldn't have troubled you if it wasn't important. It's my birthday on the third, you see, and I've got hold of some really choice things. Old Hu and Old Cheng have got hold of some of the biggest, longest, crispest water-lilies you've ever seen; and some enormous melons; and some Siamese smoked pork and fish, as long as this and as big as this, that they've got hold of somewhere.''Ah, yes!'said Jia Yun. 'I remember now. It's next month. I'll have to get you a birthday present.''No, no, no!'said Xue Pan. 'I don't want a present. All I want is for you to come and help me eat them.''All right,'said Jia Yun. 'I'll come.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 627-3138: `.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then`\n", - "Group 2 found at 3138-5649: `.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then`\n", - "Group 3 found at 3138-5649: `.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then.''Good!'said Xue Pan. 'I knew you'd come. You're a real friend.''But you have to promise me one thing,'said Jia Yun. 'What's that?''You have to promise not to invite any of those rowdies.''I promise,'said Xue Pan. 'I promise. I promise.''All right,'said Jia Yun. 'I'll come then`\n", - "\n", - "Group 1 found at 5865-5875: `I promise.`\n", - "Group 2 found at 5876-5886: `I promise.`\n", - "Group 3 found at 5876-5886: `I promise.`\n", - "(0, 5043, 5043)\n", - "\n", - "*** Found 15 rows with output_tokens >= 2048 for shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00\n", - "--------------------------------------------------\n", - "chinese: 海老公道:“哼,掀住肩头有什么用?\n", - "--------------------------------------------------\n", - "english: 'That's no good!\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 'Humph! What's the sense in carrying it on your shoulder? he said. 'You'd better let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I can carry it for you. It's heavy, isn't it? Let me take it. I\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 宝钗见贾环急了,便瞅了莺儿一眼,说道:“越大越没规矩!\n", - "--------------------------------------------------\n", - "english: Bao-chai could see that Jia Huan was rattled, and darting a sharp look at Oriole, commanded her to yield. 'You grow more unmannerly every day,' she told her.\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: Bao-chai saw that Jia Huan was getting angry and gave a little glance to Oriole. 'You're getting more and more unmannerly the older you get! she said. 'What do you want to go asking questions like that for? 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to be careful. 'I'm sure you didn't mean any harm, but you ought to\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 海老公道:“这小娃娃叫什么名字?\n", - "--------------------------------------------------\n", - "english: 'What was the little fellow's name?\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 'What's the little blighter's name?' said the old eunuch. 'Howsomever, I suppose it don't matter. 'Tis a long time since I've seen a child so young. 'Tis a pity he's a boy. If he were a girl, I could have taken him in with me. I could have brought him up as a maid-in-waiting. 'Twould have been a good thing for him. 'Twould have been a good thing for me. 'Twould have been a good thing for everyone. 'Tis a pity he's a boy. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. 'Tis a pity. '\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: “在,大叔,长得好好的,就是耳朵流血啦。”\n", - "--------------------------------------------------\n", - "english: 'It's there, Uncle, right where it's supposed to be. Except your ear's bleeding.'\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 'Yes, Uncle. I'm fine, except my ear is bleeding.' 'I see. Well, just stay there for a while. I'll be right there.' 'Yes, Uncle.' 'And don't move around too much. You might make it worse.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes, Uncle.' 'Old Geng, you stay with him. Keep an eye on him.' 'Yes, Uncle.' 'I'll be right there.' 'Yes\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 宝玉会意,忽听“唿”一声帘子响,晴雯又跑进来问道:“我怎么磨牙了?\n", - "--------------------------------------------------\n", - "english: Bao-yu took her meaning; but it was too late. With another swish of the door-blind, Skybright had already darted in again. 'Oh! Sharp-tongued, am I?\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: Bao-yu understood that he was being asked to go to bed. Just then there was a sudden swish of the door-blind and Skybright came running in again. 'What are you doing? Grinding your teeth? he said. 'You'd better go to bed! 'And she pulled the bed-curtains open for him. 'Come along! Get in! 'She said. 'I'll tuck you up! 'And she proceeded to do so. 'Now, now! Don't fidget! 'She said. 'Just go to sleep! 'And she drew the bed-curtains tightly round him. 'There! 'She said. 'Now you can sleep! 'And she went out again. Bao-yu lay there for a long time, but he could not get to sleep. He heard the women all go off to bed, one after another, and the room grew quiet. Then, after a long while, he heard the sound of the watchman's rattle outside and the call of the night-watchman in the distance. He was still lying there wide awake when he heard the first light of dawn announced by the cawing of the crows in the garden. Then, just as he was beginning to doze off, he was startled by a sudden noise. It sounded like a loud, shrill laugh. He sat up in bed and listened. The laugh was followed by a sound of weeping. He threw off his coverlet and got out of bed. The room was still dark, but he could just make out the form of a woman in tears. It was Skybright. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She stood there in the darkness, weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She stood there in the darkness, weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did not know what to do. He stood there for a long time, frozen with fear. Then, all of a sudden, he heard a voice. It was very faint, but it seemed to be calling his name. 'Bao-yu! Bao-yu! 'It said. 'Come here! 'He followed the sound of the voice until he came to the door of his room. There he found Dai-yu. She was leaning against the doorpost, weeping. 'What's the matter? 'He said. 'What are you crying about? 'But she did not answer. She just went on weeping. Bao-yu was frightened. He did\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 周瑞家的道:“我的娘!\n", - "--------------------------------------------------\n", - "english: 'My dear good woman,' said the latter when they were out of earshot, 'whatever came over you?\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 'My mother!' said Zhou Rui's wife. 'What are you talking about? It's only a bit of fun. You're not going to die because of it. Come on! Let's go! We'll take you along with us. You can be one of the girls. No one will mind. Just for fun! Come on! We'll take you along!'' She reached out and took hold of Blossom's hand. 'Come on! Let's go! It'll be fun!'' She pulled Blossom to her feet and the two of them set off, with the other girls following after them. As they went, they sang: 'We're going to see the play, We're going to see the play!'' and 'We're going to see the show, We're going to see the show!'' and other such songs. Blossom went with them, still in a daze. She had no idea where they were taking her. She had never been outside the Garden before. She had never seen a theatre. She had never seen a play. She had never seen a man. She had never seen a woman. She had never seen a child. She had never seen a dog. She had never seen a cat. She had never seen a chicken. She had never seen a cow. She had never seen a horse. She had never seen a pig. She had never seen a sheep. She had never seen a goat. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She had never seen a worm. She had never seen a fly. She had never seen a bee. She had never seen a butterfly. She had never seen a moth. She had never seen a spider. She had never seen a cricket. She had never seen a grasshopper. She had never seen an ant. She had never seen a flea. She had never seen a louse. She had never seen a bedbug. She had never seen a mosquito. She had never seen a gnat. She had never seen a cockroach. She had never seen a centipede. She had never seen a leech. She had never seen a snail. She had never seen a slug. She had never seen a worm. She had never seen a leech. She had never seen a maggot. She had never seen a grub. She had never seen a caterpillar. She had never seen a chrysalis. She had never seen a cocoon. She had never seen a pupa. She had never seen a larva. She had never seen a nymph. She had never seen a tadpole. She had never seen a spawn. She had never seen a foetus. She had never seen a baby. She had never seen a child. She had never seen a boy. She had never seen a girl. She had never seen a man. She had never seen a woman. She had never seen a cow. She had never seen a horse. She had never seen a buffalo. She had never seen a deer. She had never seen a fox. She had never seen a bear. She had never seen a monkey. She had never seen a tiger. She had never seen a lion. She had never seen an elephant. She had never seen a camel. She had never seen a donkey. She had never seen a mule. She had never seen a weasel. She had never seen a snake. She had never seen a frog. She had never seen a toad. She\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 周瑞家的听了,便已猜着几分来意。 只因他丈夫昔年争买田地一事,多得狗儿他父亲之力,今见刘姥姥如此,心中难却其意;二则也要显弄自己的体面。 便笑说:“老老你放心。\n", - "--------------------------------------------------\n", - "english: From the tone of this reply Zhou Rui's wife was already able to make a pretty good guess as to the real purpose of the old woman's visit; but because some years previously her husband had received a lot of help from Gou-er's father in a dispute over the purchase of some land, she could not very well reject Grannie Liu now, when she came to her as a suppliant. She was, in any case, anxious to demonstrate her own importance in the Jia household; and so the answer she gave her was a gracious one. 'Don't you worry, Grannie!\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: Zhou Rui's wife had by now a shrewd idea of what was in the old lady's mind. Her husband had, in the old days, been helped by Gou-er's father in his lawsuits over the purchase of land, and she felt that she could not refuse the old lady's request. Besides, she wanted to show off in front of her. So she smiled and said: 'Now, now, Grannie, don't you go worrying! We'll do all we can to help. 'Tis our duty. 'Tis what we ought to do. 'Tis what we want to do. 'Tis what we will do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do. 'Tis what we shall do\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 老子就吃过。”\n", - "--------------------------------------------------\n", - "english: Do try some, it's delicious!'\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: I've had my supper.' 'Old Colour, you're a liar. You haven't had supper yet.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' 'I have.' 'You haven't.' '\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 宝玉笑道:“给你个榧子吃呢!\n", - "--------------------------------------------------\n", - "english: Bao-yu laughed and snapped his fingers at her: 'Put that on your tongue, girl!\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 'I'll give you a button!' said Bao-yu, laughing. 'Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here! Here\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 韦小宝暗暗叫苦:“原来做太监要净身,那就是割去小便的东西。\n", - "--------------------------------------------------\n", - "english: Trinket was horrified. 'So that's what being 'purified' means: having your piss-pipe and the other bits cut off.\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: Trinket groaned inwardly. So that was what they meant by 'purification'! It meant cutting off your prick! He had heard of it, of course, but never imagined that it could happen to him. 'No, no, no! I'd rather die! I'd rather die! I'd rather die! he muttered to himself, over and over again. 'I'd rather die! I'd rather die! I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather die! 'I'd rather\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 将她抱起,坐在椅上,说道:“你瞧着,我在你身上各个部位指点,倘若指得对的,你就眨三下眼睛,指得不对,眼睛睁得大大的,一动也不能动。\n", - "--------------------------------------------------\n", - "english: He lifted her up in his arms and sat her down in a chair. 'Now look,' he said, 'I'm going to start pointing to places on your body. If I point to the right place, blink three times; if it isn't right, just keep your eyes open and don't move.\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: He lifted her up and sat her in a chair. 'Now, I'm going to point to different parts of your body. If I point to the right place, you blink your eyes three times; if I don't, you keep them wide open and perfectly still. Understand? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在��指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 韦小宝大喜,来不及装饭,夹起一块红烧肉便吃,虽然菜肴早已冷了,吞入饥肠,却是说不出的美味,心想:“这些饭菜不知是谁送来的。\n", - "--------------------------------------------------\n", - "english: Trinket was delighted, and without bothering to fill his bowl with rice, he attacked a dish of stewed meat. The food was cold, but he was hungry, and to him it was indescribably delicious. 'I wonder where they get the food from?\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: Trinket was so pleased that he did not even bother to serve himself a plateful, but simply picked up a piece of the cold meat in his fingers and popped it into his mouth. It was delicious. 'I wonder who sent this,' he thought. 'It's very nice of them. 'Then he remembered that he had asked Whiskers to get him some food. 'It must have been Whiskers,' he thought. 'I hope he didn't steal it. 'But then he thought of something else. 'I hope he didn't go to the Helmsman's place. 'He was just starting to worry about this, when there was a knock at the door. 'Come in!' he said. 'It's me, Whiskers,' said the voice outside. 'I've brought you some pickles. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they say?' he asked. 'They said they'd heard you were ill,' said Whiskers, 'and they sent you their best wishes for your recovery. 'Trinket's heart sank. 'Oh, it's you,' he said. 'Come in, then. 'Whiskers came in and closed the door behind him. 'I hope you like them,' he said. 'I got them from the Helmsman's. 'Trinket's heart sank even further. 'What were you doing at the Helmsman's?' he asked. 'I went to ask for some food for you,' said Whiskers. 'I told them you were ill. 'Trinket's heart was now in his boots. 'What did they\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 顾炎武举起酒杯,高声吟道:\n", - "--------------------------------------------------\n", - "english: Gu Yanwu raised his wine-cup and, in ringing tones, recited the following couplet:\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: Gu Yanwu raised his cup and recited in a loud voice: 'When a man's heart is sore, 'Tis wine that he desires. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. 'Tis wine that he desires, And drinking is the cure for sorrow. '\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 凤姐道:“正是呢。\n", - "--------------------------------------------------\n", - "english: 'Yes, indeed!' said Xi-feng.\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 'That's it,' said Xi-feng. 'That's what I meant. 'Tis the season of the falling leaves. The trees are bare. The flowers are all gone. It is a time of decay and death. 'Tis the very image of human life. 'Tis a season of decline and fall. 'Tis the time of year when the grasshopper's wing is bare. 'Tis the time of year when the tree can be mistaken for a withered stick. 'Tis the time of year when the man is like the tree. 'Tis the time of year when the tree is like the man. 'Tis the time of year when the tree and the man are alike. 'Tis the time of year when the tree and the man are one. 'Tis the time of year when the tree and the man are the same. 'Tis the time of year when the tree and the man are indistinguishable. 'Tis the time of year when the tree and the man are as one. 'Tis the time of year when the tree and the man are one and the same. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the man are the same thing. 'Tis the time of year when the tree and the\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "--------------------------------------------------\n", - "chinese: 海老公摇头道:“好什么?\n", - "--------------------------------------------------\n", - "english: 'Better?' said the old eunuch shaking his head.\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 'What's good about it? said the old eunuch, shaking his head. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business. 'It's a rotten business.\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 2048\n", - "\n", - "*** Found 1 rows with incomplete translations for shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00\n", - "--------------------------------------------------\n", - "chinese: 将她抱起,坐在椅上,说道:“你瞧着,我在你身上各个部位指点,倘若指得对的,你就眨三下眼睛,指得不对,眼睛睁得大大的,一动也不能动。\n", - "--------------------------------------------------\n", - "english: He lifted her up in his arms and sat her down in a chair. 'Now look,' he said, 'I'm going to start pointing to places on your body. If I point to the right place, blink three times; if it isn't right, just keep your eyes open and don't move.\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: He lifted her up and sat her in a chair. 'Now, I'm going to point to different parts of your body. If I point to the right place, you blink your eyes three times; if I don't, you keep them wide open and perfectly still. Understand? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上,说道:'我现在要指你身上的各个部位,你要是觉得我指对了,就眨三下眼睛;要是觉得我指不对,就把眼睛睁得大大的,一动也不要动。明白了吗? Chinese: 把她抱起来放在椅子上\n", - "--------------------------------------------------\n", - "count_chinese_characters-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.00: 1\n", - "### Analyzing: shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02\n", - "*** Found 15 rows with total_repetitions > 50 for shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02\n", - "因问贾环:“你输了多少钱?”\n", - "================================================================================\n", - "How much did you lose?'\n", - "================================================================================\n", - " He turned to Jia Huan. 'How much did you lose?' he asked. 'I lost a hundred cash,' said Jia Huan. 'That's nothing!' said Dai-ru. 'I lost a thousand.' 'Well, I lost two thousand,' said Jia Qiang. 'And I three thousand,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost thirty thousand cash.' 'Well, I lost a hundred thousand,' said Jia Qiang. 'I lost a million,' said Jia Yun. 'I lost ten million,' said Dai-ru. 'I lost a hundred million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand million,' said Dai-ru. 'I lost ten thousand million,' said Jia Qiang. 'I lost a hundred thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 714-723: ` thousand`\n", - "Group 2 found at 723-733: ` thousand `\n", - "Group 3 found at 723-732: ` thousand`\n", - "\n", - "Group 1 found at 770-779: ` thousand`\n", - "Group 2 found at 779-789: ` thousand `\n", - "Group 3 found at 779-788: ` thousand`\n", - "\n", - "Group 1 found at 829-838: `d thousan`\n", - "Group 2 found at 838-847: `d thousan`\n", - "Group 3 found at 838-847: `d thousan`\n", - "\n", - "Group 1 found at 929-938: ` thousand`\n", - "Group 2 found at 938-948: ` thousand `\n", - "Group 3 found at 938-947: ` thousand`\n", - "\n", - "Group 1 found at 992-1001: ` thousand`\n", - "Group 2 found at 1001-1011: ` thousand `\n", - "Group 3 found at 1001-1010: ` thousand`\n", - "\n", - "Group 1 found at 1059-1068: `d thousan`\n", - "Group 2 found at 1077-1086: `d thousan`\n", - "Group 3 found at 1077-1086: `d thousan`\n", - "\n", - "Group 1 found at 1169-1187: ` thousand thousand`\n", - "Group 2 found at 1187-1206: ` thousand thousand `\n", - "Group 3 found at 1187-1205: ` thousand thousand`\n", - "\n", - "Group 1 found at 1240-1258: ` thousand thousand`\n", - "Group 2 found at 1258-1277: ` thousand thousand `\n", - "Group 3 found at 1258-1276: ` thousand thousand`\n", - "\n", - "Group 1 found at 1319-1337: `d thousand thousan`\n", - "Group 2 found at 1337-1355: `d thousand thousan`\n", - "Group 3 found at 1337-1355: `d thousand thousan`\n", - "\n", - "Group 1 found at 1435-1453: ` thousand thousand`\n", - "Group 2 found at 1453-1472: ` thousand thousand `\n", - "Group 3 found at 1453-1471: ` thousand thousand`\n", - "\n", - "Group 1 found at 1518-1536: ` thousand thousand`\n", - "Group 2 found at 1536-1555: ` thousand thousand `\n", - "Group 3 found at 1536-1554: ` thousand thousand`\n", - "\n", - "Group 1 found at 1604-1622: `d thousand thousan`\n", - "Group 2 found at 1622-1640: `d thousand thousan`\n", - "Group 3 found at 1622-1640: `d thousand thousan`\n", - "\n", - "Group 1 found at 1821-1848: ` thousand thousand thousand`\n", - "Group 2 found at 1848-1876: ` thousand thousand thousand `\n", - "Group 3 found at 1848-1875: ` thousand thousand thousand`\n", - "\n", - "Group 1 found at 2052-2079: ` thousand thousand thousand`\n", - "Group 2 found at 2079-2107: ` thousand thousand thousand `\n", - "Group 3 found at 2079-2106: ` thousand thousand thousand`\n", - "\n", - "Group 1 found at 2256-2283: `d thousand thousand thousan`\n", - "Group 2 found at 2283-2310: `d thousand thousand thousan`\n", - "Group 3 found at 2283-2310: `d thousand thousand thousan`\n", - "\n", - "Group 1 found at 2509-2545: ` thousand thousand thousand thousand`\n", - "Group 2 found at 2545-2582: ` thousand thousand thousand thousand `\n", - "Group 3 found at 2545-2581: ` thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 2776-2812: ` thousand thousand thousand thousand`\n", - "Group 2 found at 2812-2849: ` thousand thousand thousand thousand `\n", - "Group 3 found at 2812-2848: ` thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 3014-3050: `d thousand thousand thousand thousan`\n", - "Group 2 found at 3050-3086: `d thousand thousand thousand thousan`\n", - "Group 3 found at 3050-3086: `d thousand thousand thousand thousan`\n", - "\n", - "Group 1 found at 3303-3348: ` thousand thousand thousand thousand thousand`\n", - "Group 2 found at 3348-3394: ` thousand thousand thousand thousand thousand `\n", - "Group 3 found at 3348-3393: ` thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 3606-3651: ` thousand thousand thousand thousand thousand`\n", - "Group 2 found at 3651-3697: ` thousand thousand thousand thousand thousand `\n", - "Group 3 found at 3651-3696: ` thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 3883-3928: `d thousand thousand thousand thousand thousan`\n", - "Group 2 found at 3928-3973: `d thousand thousand thousand thousand thousan`\n", - "Group 3 found at 3928-3973: `d thousand thousand thousand thousand thousan`\n", - "\n", - "Group 1 found at 4208-4262: ` thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 4262-4317: ` thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 4262-4316: ` thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 4547-4601: ` thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 4601-4656: ` thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 4601-4655: ` thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 4859-4913: `d thousand thousand thousand thousand thousand thousan`\n", - "Group 2 found at 4913-4967: `d thousand thousand thousand thousand thousand thousan`\n", - "Group 3 found at 4913-4967: `d thousand thousand thousand thousand thousand thousan`\n", - "\n", - "Group 1 found at 5220-5283: ` thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 5283-5347: ` thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 5283-5346: ` thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 5595-5658: ` thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 5658-5722: ` thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 5658-5721: ` thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 5941-6004: `d thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 2 found at 6004-6067: `d thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 3 found at 6004-6067: `d thousand thousand thousand thousand thousand thousand thousan`\n", - "\n", - "Group 1 found at 6338-6410: ` thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 6410-6483: ` thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 6410-6482: ` thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 6749-6821: ` thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 6821-6894: ` thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 6821-6893: ` thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 7134-7206: `d thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 2 found at 7206-7278: `d thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 3 found at 7206-7278: `d thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "\n", - "Group 1 found at 7567-7648: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 7648-7730: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 7648-7729: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 8014-8095: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 8095-8177: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 8095-8176: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 8434-8515: `d thousand thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 2 found at 8515-8596: `d thousand thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 3 found at 8515-8596: `d thousand thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "\n", - "Group 1 found at 8903-8993: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 8993-9084: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 8993-9083: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 9386-9476: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 9476-9567: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 9476-9566: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 9840-9930: `d thousand thousand thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 2 found at 9930-10020: `d thousand thousand thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "Group 3 found at 9930-10020: `d thousand thousand thousand thousand thousand thousand thousand thousand thousand thousan`\n", - "\n", - "Group 1 found at 10345-10444: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 10444-10544: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 10444-10543: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 10864-10963: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "Group 2 found at 10963-11063: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand `\n", - "Group 3 found at 10963-11062: ` thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand`\n", - "\n", - "Group 1 found at 206-3898: `'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.`\n", - "Group 2 found at 3898-7590: `'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.`\n", - "Group 3 found at 3898-7590: `'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.'he said. 'I promise never to do anything bad again.`\n", - "(0, 7384, 7384)\n", - "海老公道:“哼,掀住肩头有什么用?\n", - "================================================================================\n", - "'That's no good!\n", - "================================================================================\n", - " 'Humph! What's the sense in carrying it on your shoulder? he said. 'You'd better let me take it. I'll put it in my basket. It'll be safer there. Come on, hand it over! And don't go thinking you can hide it from me, because I know all about it. I've seen it. I know what it is. It's a bit of the sacred mountain. You've been up to the sacred mountain and you've brought a bit of it back with you. Well, you'd better let me take charge of it. I'll look after it for you. Come on, hand it over! 'The old eunuch held out his hand. Trinket hesitated for a moment, then took the object from under his arm and handed it over. The old eunuch took it and put it in his basket. 'Now, that's better,'he said. 'Now we can go. 'And he set off once more along the path. Trinket followed him, wondering what he was going to do with the bit of sacred mountain. But he had no wish to ask him. He was just relieved that the old eunuch had taken it off him. He was afraid that if he kept it, he might get into trouble. The old eunuch might tell someone about it. But now that he had given it to him, he felt safe. The old eunuch would look after it for him. He would keep it safe. 'I wonder where we're going,'he thought. 'I hope it's somewhere nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he followed him in silence. They walked for a long time. Then they came to a large house. It was surrounded by a high wall. The old eunuch went through the gate and Trinket followed him. Inside the house it was very quiet. There was no one about. The old eunuch went into one of the rooms and Trinket followed him. It was a very nice room. There were carpets on the floor and curtains at the windows. There was a table in the room and two chairs. The old eunuch sat down in one of the chairs and Trinket sat down in the other. The old eunuch took the bit of sacred mountain out of his basket and put it on the table. 'This is a very precious thing,'he said. 'It is a bit of the sacred mountain. You have done very well to bring it here. 'Trinket did not know what to say. He was very surprised. He had not expected the old eunuch to say that. 'I'm glad you like it,'he said. 'I hope you will keep it safe. 'The old eunuch nodded. 'I will keep it safe,'he said. 'I will look after it. 'Trinket was very relieved. He was glad that the old eunuch had taken the bit of sacred mountain. He was afraid that if he kept it, he might get into trouble. But now that he had given it to the old eunuch, he felt safe. The old eunuch would look after it for him. He would keep it safe. 'I wonder what the old eunuch wants it for,'he thought. 'I hope he doesn't want it for anything bad. 'But he had no wish to ask him. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to stay here with me,'said the old eunuch. 'I want you to be my little friend. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'I would like that,'he said. 'I would like to be your little friend. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will stay here with me. You will be my little friend. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to stay with him. He was glad that he could be his little friend. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to call me 'Papa'','said the old eunuch. 'I want you to call me 'Papa'' from now on. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'Yes, Papa,'he said. 'I will call you 'Papa''. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will call me 'Papa'' from now on. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to call him 'Papa'. He was glad that he could call him 'Papa'. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to stay here with me always,'said the old eunuch. 'I want you to be my little friend always. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'I would like that,'he said. 'I would like to be your little friend always. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will stay here with me always. You will be my little friend always. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to stay with him always. He was glad that he could be his little friend always. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to stay here with me always,'said the old eunuch. 'I want you to be my little friend always. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'I would like that,'he said. 'I would like to be your little friend always. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will stay here with me always. You will be my little friend always. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to stay with him always. He was glad that he could be his little friend always. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to stay here with me always,'said the old eunuch. 'I want you to be my little friend always. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'I would like that,'he said. 'I would like to be your little friend always. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will stay here with me always. You will be my little friend always. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to stay with him always. He was glad that he could be his little friend always. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 4362-5301: `. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to stay here with me always,'said the old eunuch. 'I want you to be my little friend always. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'I would like that,'he said. 'I would like to be your little friend always. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will stay here with me always. You will be my little friend always. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to stay with him always. He was glad that he could be his little friend always`\n", - "Group 2 found at 6240-7179: `. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to stay here with me always,'said the old eunuch. 'I want you to be my little friend always. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'I would like that,'he said. 'I would like to be your little friend always. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will stay here with me always. You will be my little friend always. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to stay with him always. He was glad that he could be his little friend always`\n", - "Group 3 found at 6240-7179: `. He was very happy. 'I wonder what it will be like,'he thought. 'I hope it will be nice. 'But he had no wish to ask the old eunuch. He was afraid of him. He was afraid that he might get angry with him. So he sat in silence. The old eunuch sat in silence too. They sat in silence for a long time. Then the old eunuch spoke. 'I have something to tell you,'he said. 'What is it?' said Trinket. 'I want you to stay here with me always,'said the old eunuch. 'I want you to be my little friend always. 'Trinket was very surprised. He had not expected the old eunuch to say that. 'I would like that,'he said. 'I would like to be your little friend always. 'The old eunuch smiled. 'Good,'he said. 'Then it's settled. You will stay here with me always. You will be my little friend always. 'Trinket nodded. He was very happy. He was glad that the old eunuch wanted him to stay with him always. He was glad that he could be his little friend always`\n", - "(0, 2817, 2817)\n", - "石头听了大喜,因问:“不知可镌何字?\n", - "================================================================================\n", - "The stone was delighted. 'What words will you cut?\n", - "================================================================================\n", - " Hearing this, the stone was overjoyed and asked, 'What words are you going to carve on me?''The Magic Stone Vanishes', he said. 'Why 'The Magic Stone Vanishes'?' said the stone. 'Because you are going to vanish soon,'said the monk. 'But where am I going to?' said the stone. 'Never mind,'said the monk. 'You'll find out soon enough.'Then he carved the words 'The Magic Stone Vanishes' on one side of the stone, and on the other, 'The Magic Stone Reappears'. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 457-3911: `. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone`\n", - "Group 2 found at 3911-7365: `. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone`\n", - "Group 3 found at 3911-7365: `. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone. 'What are you doing that for?' said the stone. 'I'm doing it because you are going to reappear presently,'said the monk. 'But where am I going to reappear?' said the stone. 'Never mind,'said the monk. 'You'll find out presently.'Then he carved the words 'The Magic Stone Reappears' on the other side of the stone`\n", - "(0, 6908, 6908)\n", - "只篦了三五下儿,见晴雯忙忙走进来取钱,一见他两个,便冷笑道:“哦!\n", - "================================================================================\n", - "But he had not drawn it more than four or five times through her hair, when Skybright came bursting in to get some more money. Seeing the two of them together, she smiled sarcastically: 'Fancy!\n", - "================================================================================\n", - " He had barely done half-a-dozen strokes when Skybright came hurrying in to fetch her money. Seeing the two of them there, she gave them a frosty smile. 'Ah! I see! So this is where you've got to! I've been looking all over for you. 'Tis a lucky thing I've found you. I was beginning to think that you had both of you gone off together somewhere. 'Tis a good thing I can trust you! 'Tis a good thing I know that you are both of you perfectly capable of looking after yourselves! 'Tis a good thing—' She was about to say more, but Dai-yu interrupted her. 'Skybright, what's wrong? What are you so upset about? 'It's you!' said Skybright. 'I'm upset about you! I'm upset because I can trust you and you can look after yourself. 'If you can look after yourself, why do you need me to look after you? 'If you don't need me to look after you, why do you want me to stay with you? 'If you want me to stay with you, why do you go off with other people? 'If you go off with other people, why do you want me to stay with you? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1015-4281: `? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people`\n", - "Group 2 found at 4281-7547: `? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people`\n", - "Group 3 found at 4281-7547: `? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people`\n", - "(0, 6532, 6532)\n", - "蕊初道:“花园里有大海龟吗?\n", - "================================================================================\n", - "'I didn't know there were any in the Palace,' said Blossom.\n", - "================================================================================\n", - " 'Are there turtles in the garden?' Blossom asked. 'Yes,'said Nightingale. 'There are. In the pond.''I've never seen any,'said Blossom. 'I expect they hide themselves,'said Nightingale. 'They're very timid.''I'd love to see one,'said Blossom. 'If you want to see a turtle, you'd better go to Green Delights,'said Nightingale. 'There's a huge one there in a tank.''Is it really big?' said Blossom. 'Yes, it's enormous,'said Nightingale. 'It must be hundreds of years old.''I'd love to see it,'said Blossom. 'Well, you can go there tomorrow,'said Nightingale. 'But you'll have to ask Her Old Ladyship's permission first.''I'll ask her in the morning,'said Blossom. 'And I'll ask her about the badger too.''What badger?' said Nightingale. 'The one that's supposed to be in the garden,'said Blossom. 'I've never seen it, but I've heard it's there.''Don't be silly!'said Nightingale. 'There's no badger in the garden.''Why not?' said Blossom. 'Because there isn't,'said Nightingale. 'Anyway, even if there was, it would be hibernating now. It's winter.''I wonder what it would be like to see a badger,'said Blossom. 'I've never seen one.''You wouldn't like it,'said Nightingale. 'It's a horrible, smelly beast.''Really?' said Blossom. 'Yes, really,'said Nightingale. 'Anyway, you won't ever see one.''Why not?' said Blossom. 'Because you won't,'said Nightingale. 'Now let's go to sleep.''All right,'said Blossom. 'But I wish I could see a badger.''Well, you can't,'said Nightingale. 'So just go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1486-2151: ` go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please`\n", - "Group 2 found at 2151-2817: ` go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please `\n", - "Group 3 found at 2151-2816: ` go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please go to sleep!''All right,'said Blossom. 'But I do wish I could see a badger.''For goodness' sake!' said Nightingale. 'Will you please`\n", - "(0, 1331, 1331)\n", - "吕留良提笔沉吟半晌,便在画上振笔直书。 顷刻诗成,诗云:\n", - "================================================================================\n", - "He picked up a writing-brush and for some minutes could be observed muttering to himself in the throes of composition; then, writing straight on to the painting and with pauses only for moistening the brush, he quickly completed the following poem:\n", - "================================================================================\n", - " Lü held his brush suspended for some moments, then began to write on the painting in bold strokes. In a minute or two the poem was finished. It read as follows:— 'The Peach Blossom Stream'—A Picture-Poem by Lü Liuliang, 1729 A.D. The peach blossoms are in flower, The willows are in leaf. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing,\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 315-327: `. 'I promise`\n", - "Group 2 found at 327-340: `. 'I promise `\n", - "Group 3 found at 327-339: `. 'I promise`\n", - "\n", - "Group 1 found at 547-3215: `. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him`\n", - "Group 2 found at 3215-5883: `. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him`\n", - "Group 3 found at 3215-5883: `. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him. 'The old eunuch looked at him for a long time, then nodded. 'All right,'he said. 'I believe you. 'Then he turned to Whiskers. 'You can go now,'he said. 'But remember, if you ever breathe a word about this, I'll kill you. 'Yes, Goong-goong,'said Whiskers. 'I promise I won't say anything. 'The old eunuch nodded again. 'All right,'he said. 'You can go. 'And he turned back to Trinket. 'Now, listen,'he said. 'I want you to do something for me. 'What is it, Goong-goong?' said Trinket. 'I want you to take this,'said the old eunuch, and he handed Trinket a little note. 'And I want you to give it to the Helmsman. 'Yes, Goong-goong,'said Trinket. 'I'll give it to him`\n", - "(0, 5361, 5361)\n", - "老子就吃过。”\n", - "================================================================================\n", - "Do try some, it's delicious!'\n", - "================================================================================\n", - " I've had my supper.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 19-3079: `.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine`\n", - "Group 2 found at 3079-6139: `.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine`\n", - "Group 3 found at 3079-6139: `.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine`\n", - "(0, 6120, 6120)\n", - "宝玉笑道:“给你个榧子吃呢!\n", - "================================================================================\n", - "Bao-yu laughed and snapped his fingers at her: 'Put that on your tongue, girl!\n", - "================================================================================\n", - " 'I'll give you a button!' said Bao-yu, laughing. 'Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 415-3295: `Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! `\n", - "Group 2 found at 3295-6175: `Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! `\n", - "Group 3 found at 3295-6175: `Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! `\n", - "(0, 6124, 6124)\n", - "韦小宝暗暗叫苦:“原来做太监要净身,那就是割去小便的东西。\n", - "================================================================================\n", - "Trinket was horrified. 'So that's what being 'purified' means: having your piss-pipe and the other bits cut off.\n", - "================================================================================\n", - " Trinket groaned inwardly. So that was what they meant by 'purification'! It meant cutting off your prick! He had heard of eunuchs, of course, but had never imagined that he might one day become one himself. The thought of it made him shudder. 'No, no, no! I'd rather die! I'd rather die! I'd rather die!'he muttered to himself. 'I'd rather die...'But the words died on his lips. He had just seen something that made his heart sink even further. The old eunuch was now standing in front of a large, ornate mirror, and as he stood there, he began very slowly to take off his clothes. Trinket's eyes grew round with horror. The old man's lower half was like a woman's. There was no sign of a penis or testicles. The whole area had been sliced clean away. Trinket felt a wave of nausea wash over him. He was going to be like that too! He was going to be a half-man! He was going to be a monster! 'No! No! No!' he screamed silently. 'I won't let them do it! I won't let them! I won't!'But it was too late. The old eunuch had already begun to take the knife. 'No! No! No!' Trinket screamed, this time out loud. 'I won't let you! I won't let you! I won't let you!'But no sound emerged. He was paralysed with fear. The old eunuch raised the knife. It glinted in the candlelight. Trinket closed his eyes. This was death. This was the end. But just at that moment, there was a loud knocking at the door. 'Come in!' said the old eunuch. The door opened and another eunuch came in. 'Is His Old Majesty's little friend here yet?' he said. 'No, he's not here yet,' said the old eunuch. 'But he's on his way. I've already sent someone to fetch him.''All right,'said the other eunuch. 'I'll wait here with you then till he comes.'Trinket opened his eyes again. He had been given a reprieve. But for how long? Soon he would have to undergo the operation. Soon he would cease to be a man. The horror of it was too much to bear. He became quite hysterical. He was laughing and crying at the same time. He was praying and cursing. He was begging for mercy. He was screaming defiance. He was out of his mind. But no sound emerged. He was paralysed with fear. The two eunuchs stood there waiting for the Little Count to arrive. They did not seem to notice Trinket's condition. They stood there talking to each other in low tones. Trinket's mind was a complete blank. He did not know what he wanted. He did not know what he was afraid of. He did not know what he was praying for. He did not know what he was cursing. He did not know what he wanted to do. He did not know what he wanted to say. He did not know what he wanted to think. He was completely out of his mind. But then, suddenly, he remembered something. He remembered that he had a dagger. It was hidden under his belt. He had picked it up on the way. He had picked it up without thinking. But now he knew what he wanted to do with it. He wanted to kill the two eunuchs. He wanted to kill them before they killed him. He wanted to kill them before they made him into a half-man. He wanted to kill them before they made him into a monster. He slowly took out the dagger. He raised it. He brought it down. But just at that moment, the door opened again. 'Ah, Old Hai,'said the Little Count, 'I hear you've got a new boy for me.''Yes, Little Count,'said the old eunuch. 'He's a very nice little fellow.''Good,'said the Little Count. 'Let's have a look at him.'The old eunuch stepped aside. The Little Count looked at Trinket. Trinket looked at the Little Count. The Little Count was a boy about his own age. He was dressed in the uniform of a Manchu nobleman. He had a very pale face. He had very red lips. He had very sharp eyes. He looked very intelligent. He looked very handsome. He looked very proud. He looked very haughty. He looked very contemptuous. He looked very cruel. Trinket felt a shiver run down his spine. He felt a shiver run down his back. He felt a shiver run down his arms. He felt a shiver run down his legs. He felt a shiver run down his whole body. He felt very cold. He felt very frightened. He felt very nervous. He felt very timid. He felt very shy. He felt very ashamed. He felt very guilty. He felt very humiliated. He felt very insulted. He felt very offended. He felt very angry. He felt very resentful. He felt very bitter. He felt very scornful. He felt very contemptuous. He felt very cruel. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt very superior. He felt very arrogant. He felt very self-important. He felt very vain. He felt very self-satisfied. He felt very complacent. He felt very smug. He felt very pleased. He felt very happy. He felt very lucky. He felt very grateful. He felt very relieved. He felt very hopeful. He felt very optimistic. He felt very enthusiastic. He felt very eager. He felt very excited. He felt very thrilled. He felt very elated. He felt very proud. He felt very haughty. He felt\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 255-271: `! I'd rather die`\n", - "Group 2 found at 287-303: `! I'd rather die`\n", - "Group 3 found at 287-303: `! I'd rather die`\n", - "\n", - "Group 1 found at 1107-1124: `I won't let you! `\n", - "Group 2 found at 1124-1141: `I won't let you! `\n", - "Group 3 found at 1124-1141: `I won't let you! `\n", - "\n", - "Group 1 found at 131-148: `Stop blubbering! `\n", - "Group 2 found at 148-165: `Stop blubbering! `\n", - "Group 3 found at 148-165: `Stop blubbering! `\n", - "\n", - "Group 1 found at 95-2335: ` —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right....`\n", - "Group 2 found at 2335-4576: ` —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... `\n", - "Group 3 found at 2335-4575: ` —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right.... —It's all right....`\n", - "(0, 4481, 4481)\n", - "韦小宝道:“今儿我赌了钱回来,遇到一个小…… 小太监,拦住了路,要我分钱给他,我不肯,他就跟我比武,说道我胜得过他,才放我走。\n", - "================================================================================\n", - "'Well, after today's game, I met this . . . little eunuch, who stood in my way and asked me to give him some of my winnings. I wouldn't, so we ended up fighting.\n", - "================================================================================\n", - " 'I was coming back from gambling today when I met this little... this little eunuch who barred my way and wanted me to give him some money. I refused, so he said he'd let me go if I could beat him in a fight. So I fought him. And I won. And he let me go. That's all.''Did you kill him?' 'Yes. I killed him.''Why did you kill him?' 'Because he said he'd kill me if I didn't.''You mean you killed him in self-defence?' 'Yes. That's right.''Well, that's all right then.''But I'm afraid there might be trouble about it.''What sort of trouble?' 'I'm afraid they might hang me.''Don't worry! No one's going to hang you.''But what about the Helmsman?' 'I'll tell him it was self-defence. He'll understand.''But what about the Emperor?' 'I'll tell him too.''But what if he doesn't believe you?' 'He'll believe me.''But what if he doesn't?' 'Then we'll just have to run away.''Where could we run to?' 'We could go to the River.''What River?' 'The River at home.''You mean the one in your village?' 'Yes.''But how should we get there?' 'We could go by boat.''But what about the Helmsman?' 'He could come with us.''And what about the other Brothers?' 'They could all come.''But what about the Emperor?' 'Huh! Let him stay here!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 1216-3736: `!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too`\n", - "Group 2 found at 3736-6256: `!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too`\n", - "Group 3 found at 3736-6256: `!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too!''But what about the Empress Dowager?' 'Huh! Let her stay here too!''And what about the Little Countess?' 'Oh, she could come with us.''And what about Blossom?' 'She could come too.''And what about Whiskers?' 'He could come too.''And what about Goolar?' 'He could come too.''And what about Old Hai?' 'He could come too.''And what about the other Palace eunuchs?' 'Huh! Let them stay here!''And what about the Tartars?' 'Huh! Let them stay here too!''And what about the Chinese?' 'Huh! Let them stay here too!''And what about the whole Empire?' 'Huh! Let it stay here too!''But what about the Emperor?' 'Huh! Let him stay here too`\n", - "(0, 5040, 5040)\n", - "顾炎武道:“此诗结得甚妙!\n", - "================================================================================\n", - "'Your conclusion is excellent, ' said Gu.\n", - "================================================================================\n", - " 'The poem ends very well,' said Gu. 'But what does it mean? 'I am a man of Zou. ''What does that signify? 'I am a man of Zou. ''It means that I am a man of Zou.''I am a man of Zou. ''I am a man of Zou. ''It means that I am a man of Zou.''I am a man of Zou. ''I am a man of Zou. ''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "\n", - "Group 1 found at 107-183: `'I am a man of Zou. ''It means that I am a man of Zou.''I am a man of Zou. '`\n", - "Group 2 found at 183-259: `'I am a man of Zou. ''It means that I am a man of Zou.''I am a man of Zou. '`\n", - "Group 3 found at 183-259: `'I am a man of Zou. ''It means that I am a man of Zou.''I am a man of Zou. '`\n", - "\n", - "Group 1 found at 279-2425: `''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.`\n", - "Group 2 found at 2425-4571: `''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.`\n", - "Group 3 found at 2425-4571: `''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.''It means that I am a man of Zou.''I am a man of Zou.''I am a man of Zou.`\n", - "\n", - "Group 1 found at 4587-4607: `I am a man of Zou.''`\n", - "Group 2 found at 4607-4627: `I am a man of Zou.''`\n", - "Group 3 found at 4607-4627: `I am a man of Zou.''`\n", - "(0, 4484, 4484)\n", - "\n", - "*** Found 6 rows with output_tokens >= 2048 for shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02\n", - "--------------------------------------------------\n", - "chinese: 因问贾环:“你输了多少钱?”\n", - "--------------------------------------------------\n", - "english: How much did you lose?'\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: He turned to Jia Huan. 'How much did you lose?' he asked. 'I lost a hundred cash,' said Jia Huan. 'That's nothing!' said Dai-ru. 'I lost a thousand.' 'Well, I lost two thousand,' said Jia Qiang. 'And I three thousand,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost thirty thousand cash.' 'Well, I lost a hundred thousand,' said Jia Qiang. 'I lost a million,' said Jia Yun. 'I lost ten million,' said Dai-ru. 'I lost a hundred million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand million,' said Dai-ru. 'I lost ten thousand million,' said Jia Qiang. 'I lost a hundred thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten times that amount,' said Jia Qiang. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten times that amount,' said Jia Yun. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Dai-ru. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost a hundred thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I lost ten times that amount,' said Dai-ru. 'I lost a thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Qiang. 'I lost ten thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand thousand million,' said Jia Yun. 'I\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: 2048\n", - "--------------------------------------------------\n", - "chinese: 只篦了三五下儿,见晴雯忙忙走进来取钱,一见他两个,便冷笑道:“哦!\n", - "--------------------------------------------------\n", - "english: But he had not drawn it more than four or five times through her hair, when Skybright came bursting in to get some more money. Seeing the two of them together, she smiled sarcastically: 'Fancy!\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: He had barely done half-a-dozen strokes when Skybright came hurrying in to fetch her money. Seeing the two of them there, she gave them a frosty smile. 'Ah! I see! So this is where you've got to! I've been looking all over for you. 'Tis a lucky thing I've found you. I was beginning to think that you had both of you gone off together somewhere. 'Tis a good thing I can trust you! 'Tis a good thing I know that you are both of you perfectly capable of looking after yourselves! 'Tis a good thing—' She was about to say more, but Dai-yu interrupted her. 'Skybright, what's wrong? What are you so upset about? 'It's you!' said Skybright. 'I'm upset about you! I'm upset because I can trust you and you can look after yourself. 'If you can look after yourself, why do you need me to look after you? 'If you don't need me to look after you, why do you want me to stay with you? 'If you want me to stay with you, why do you go off with other people? 'If you go off with other people, why do you want me to stay with you? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with other people? 'If you want me to stay with you, why do you go off with\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: 2048\n", - "--------------------------------------------------\n", - "chinese: 吕留良提笔沉吟半晌,便在画上振笔直书。 顷刻诗成,诗云:\n", - "--------------------------------------------------\n", - "english: He picked up a writing-brush and for some minutes could be observed muttering to himself in the throes of composition; then, writing straight on to the painting and with pauses only for moistening the brush, he quickly completed the following poem:\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: Lü held his brush suspended for some moments, then began to write on the painting in bold strokes. In a minute or two the poem was finished. It read as follows:— 'The Peach Blossom Stream'—A Picture-Poem by Lü Liuliang, 1729 A.D. The peach blossoms are in flower, The willows are in leaf. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing, And the Peach Blossom Land is all around. The Peach Blossom Stream is flowing,\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: 2048\n", - "--------------------------------------------------\n", - "chinese: 老子就吃过。”\n", - "--------------------------------------------------\n", - "english: Do try some, it's delicious!'\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: I've had my supper.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I've had mine.' 'Old Colour, have you eaten?' 'Yes, I've had mine.' 'Old Gook, have you eaten?' 'Yes, I\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: 2048\n", - "--------------------------------------------------\n", - "chinese: 宝玉笑道:“给你个榧子吃呢!\n", - "--------------------------------------------------\n", - "english: Bao-yu laughed and snapped his fingers at her: 'Put that on your tongue, girl!\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: 'I'll give you a button!' said Bao-yu, laughing. 'Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here you are! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is! Here he is\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: 2048\n", - "--------------------------------------------------\n", - "chinese: 囚车旁一清兵恼了,伸腿在车上踢了一脚,喝道:“再哭,再哭!\n", - "--------------------------------------------------\n", - "english: One of the soldiers marching alongside, irritated by the baby's crying, aimed a mighty kick at the cart. 'Stop it! Shut up!\n", - "--------------------------------------------------\n", - "shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: One of the soldiers standing beside the prison cart, exasperated by her weeping, kicked the side of the cart and shouted at her: 'Stop blubbering! Stop blubbering! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! Hush! H\n", - "--------------------------------------------------\n", - "output_tokens-shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02: 2048\n", - "\n", - "*** Found 0 rows with incomplete translations for shenzhi-wang/Llama3.1-70B-Chinese-Chat/checkpoint-210/rpp-1.02\n", - "### Analyzing: shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00\n", - "*** Found 2 rows with total_repetitions > 50 for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.00\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - "'Short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.02\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - "'Short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.04\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - "'Short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.06\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - "'Short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.08\n", - "短长长长长、短长长长长、短短短短短、长长长短短、长长短短长长、短短长长长、短短短短长、长长短短长长、短短短长长、长长短短短,这是1108:21:37。\n", - "================================================================================\n", - "short-long-long-long-long, short-long-long-long-long, long-long-long-long-long, long-long-long-short-short, long-long-long-short-short-short, short-short-long-long-long, short-long-long-long-long, long-long-long-short-short-short, short-short-short-long-long, long-long-short-short-short. That's 1108:21:37, Wang thought.\n", - "================================================================================\n", - "'Short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long, short, long\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - " 50 for shenzhi-wang/Mistral-7B-v0.3-Chinese-Chat/checkpoint-70/rpp-1.10\n", - "老头子跪在地上,哀求道:“八路老爷饶命,八路老爷饶命……”\n", - "================================================================================\n", - "He rose to his knees and begged, 'Spare me, Eighth Route Master, spare me!'\n", - "================================================================================\n", - "The old man knelt on the ground and pleaded for mercy: 'Eight-route sir, spare my life! Eight-route sir, spare my life!'\n", - "================================================================================\n", - "----detect excessive whitespaces----\n", - "----detect text repetitions----\n", - "