{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "42751c61-7e5c-4bd5-b7b2-46ed3e1056f4", "metadata": {}, "outputs": [], "source": [ "from langchain_community.document_loaders import TextLoader\n", "from langchain_text_splitters import CharacterTextSplitter\n", "from langchain_openai import OpenAIEmbeddings\n", "from langchain.vectorstores import Chroma" ] }, { "cell_type": "code", "execution_count": 2, "id": "4beeae57-70d7-404a-bfa2-4d6d1ff1220f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "True" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from dotenv import load_dotenv\n", "\n", "load_dotenv()" ] }, { "cell_type": "code", "execution_count": 3, "id": "14269783-244f-4e1a-bb59-871f1c2093da", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "\n", "books = pd.read_csv(\"books_cleaned.csv\")\n" ] }, { "cell_type": "code", "execution_count": 4, "id": "04b757aa-f899-48b4-a292-082ed28557f5", "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", "
isbn13isbn10titleauthorscategoriesthumbnaildescriptionpublished_yearaverage_ratingnum_pagesratings_counttitle_and_subtitletagged_description
097800020058830002005883GileadMarilynne RobinsonFictionhttp://books.google.com/books/content?id=KQZCP...A NOVEL THAT READERS and critics have been eag...2004.03.85247.0361.0Gilead9780002005883 A NOVEL THAT READERS and critics...
197800022619820002261987Spider's WebCharles Osborne;Agatha ChristieDetective and mystery storieshttp://books.google.com/books/content?id=gA5GP...A new 'Christie for Christmas' -- a full-lengt...2000.03.83241.05164.0Spider's Web: A Novel9780002261982 A new 'Christie for Christmas' -...
\n", "
" ], "text/plain": [ " isbn13 isbn10 title authors \\\n", "0 9780002005883 0002005883 Gilead Marilynne Robinson \n", "1 9780002261982 0002261987 Spider's Web Charles Osborne;Agatha Christie \n", "\n", " categories \\\n", "0 Fiction \n", "1 Detective and mystery stories \n", "\n", " thumbnail \\\n", "0 http://books.google.com/books/content?id=KQZCP... \n", "1 http://books.google.com/books/content?id=gA5GP... \n", "\n", " description published_year \\\n", "0 A NOVEL THAT READERS and critics have been eag... 2004.0 \n", "1 A new 'Christie for Christmas' -- a full-lengt... 2000.0 \n", "\n", " average_rating num_pages ratings_count title_and_subtitle \\\n", "0 3.85 247.0 361.0 Gilead \n", "1 3.83 241.0 5164.0 Spider's Web: A Novel \n", "\n", " tagged_description \n", "0 9780002005883 A NOVEL THAT READERS and critics... \n", "1 9780002261982 A new 'Christie for Christmas' -... " ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "books.head(2)" ] }, { "cell_type": "code", "execution_count": 5, "id": "73efe600-2bcf-49e7-89f4-b4f164a9f868", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0 9780002005883 A NOVEL THAT READERS and critics...\n", "1 9780002261982 A new 'Christie for Christmas' -...\n", "2 9780006178736 A memorable, mesmerizing heroine...\n", "3 9780006280897 Lewis' work on the nature of lov...\n", "4 9780006280934 \"In The Problem of Pain, C.S. Le...\n", " ... \n", "5192 9788172235222 On A Train Journey Home To North...\n", "5193 9788173031014 This book tells the tale of a ma...\n", "5194 9788179921623 Wisdom to Create a Life of Passi...\n", "5195 9788185300535 This collection of the timeless ...\n", "5196 9789027712059 Since the three volume edition o...\n", "Name: tagged_description, Length: 5197, dtype: object" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "books[\"tagged_description\"]" ] }, { "cell_type": "code", "execution_count": 6, "id": "3045ade9-a446-4b9f-bcba-31021dd5051f", "metadata": {}, "outputs": [], "source": [ "books[\"tagged_description\"].to_csv(\"tagged_description.txt\",\n", " sep = \"\\n\",\n", " index = False,\n", " header = False)\n" ] }, { "cell_type": "code", "execution_count": 7, "id": "a3600cdf-a344-4cfd-837a-3328fd85792a", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Created a chunk of size 1168, which is longer than the specified 0\n", "Created a chunk of size 1214, which is longer than the specified 0\n", "Created a chunk of size 373, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 483, which is longer than the specified 0\n", "Created a chunk of size 482, which is longer than the specified 0\n", "Created a chunk of size 960, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 843, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 881, which is longer than the specified 0\n", "Created a chunk of size 1088, which is longer than the specified 0\n", "Created a chunk of size 1189, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 513, which is longer than the specified 0\n", "Created a chunk of size 752, which is longer than the specified 0\n", "Created a chunk of size 388, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 728, which is longer than the specified 0\n", "Created a chunk of size 721, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 473, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 1267, which is longer than the specified 0\n", "Created a chunk of size 681, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 553, which is longer than the specified 0\n", "Created a chunk of size 521, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 787, which is longer than the specified 0\n", "Created a chunk of size 564, which is longer than the specified 0\n", "Created a chunk of size 523, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 533, which is longer than the specified 0\n", "Created a chunk of size 559, which is longer than the specified 0\n", "Created a chunk of size 563, which is longer than the specified 0\n", "Created a chunk of size 385, which is longer than the specified 0\n", "Created a chunk of size 410, which is longer than the specified 0\n", "Created a chunk of size 461, which is longer than the specified 0\n", "Created a chunk of size 595, which is longer than the specified 0\n", "Created a chunk of size 476, which is longer than the specified 0\n", "Created a chunk of size 459, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 614, which is longer than the specified 0\n", "Created a chunk of size 419, which is longer than the specified 0\n", "Created a chunk of size 887, which is longer than the specified 0\n", "Created a chunk of size 693, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 2010, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 479, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 520, which is longer than the specified 0\n", "Created a chunk of size 647, which is longer than the specified 0\n", "Created a chunk of size 778, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 686, which is longer than the specified 0\n", "Created a chunk of size 548, which is longer than the specified 0\n", "Created a chunk of size 1225, which is longer than the specified 0\n", "Created a chunk of size 406, which is longer than the specified 0\n", "Created a chunk of size 1184, which is longer than the specified 0\n", "Created a chunk of size 1214, which is longer than the specified 0\n", "Created a chunk of size 1191, which is longer than the specified 0\n", "Created a chunk of size 1057, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 688, which is longer than the specified 0\n", "Created a chunk of size 876, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 766, which is longer than the specified 0\n", "Created a chunk of size 389, which is longer than the specified 0\n", "Created a chunk of size 417, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 723, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 526, which is longer than the specified 0\n", "Created a chunk of size 521, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 338, which is longer than the specified 0\n", "Created a chunk of size 899, which is longer than the specified 0\n", "Created a chunk of size 1270, which is longer than the specified 0\n", "Created a chunk of size 558, which is longer than the specified 0\n", "Created a chunk of size 1635, which is longer than the specified 0\n", "Created a chunk of size 436, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 777, which is longer than the specified 0\n", "Created a chunk of size 716, which is longer than the specified 0\n", "Created a chunk of size 514, which is longer than the specified 0\n", "Created a chunk of size 958, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 1132, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 1325, which is longer than the specified 0\n", "Created a chunk of size 851, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 801, which is longer than the specified 0\n", "Created a chunk of size 1119, which is longer than the specified 0\n", "Created a chunk of size 836, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 732, which is longer than the specified 0\n", "Created a chunk of size 1195, which is longer than the specified 0\n", "Created a chunk of size 710, which is longer than the specified 0\n", "Created a chunk of size 773, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 766, which is longer than the specified 0\n", "Created a chunk of size 767, which is longer than the specified 0\n", "Created a chunk of size 716, which is longer than the specified 0\n", "Created a chunk of size 2012, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 1286, which is longer than the specified 0\n", "Created a chunk of size 1231, which is longer than the specified 0\n", "Created a chunk of size 729, which is longer than the specified 0\n", "Created a chunk of size 750, which is longer than the specified 0\n", "Created a chunk of size 445, which is longer than the specified 0\n", "Created a chunk of size 1242, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 912, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 844, which is longer than the specified 0\n", "Created a chunk of size 1126, which is longer than the specified 0\n", "Created a chunk of size 1073, which is longer than the specified 0\n", "Created a chunk of size 1318, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 2834, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 171, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 570, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 367, which is longer than the specified 0\n", "Created a chunk of size 1141, which is longer than the specified 0\n", "Created a chunk of size 1004, which is longer than the specified 0\n", "Created a chunk of size 715, which is longer than the specified 0\n", "Created a chunk of size 710, which is longer than the specified 0\n", "Created a chunk of size 2510, which is longer than the specified 0\n", "Created a chunk of size 954, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 351, which is longer than the specified 0\n", "Created a chunk of size 639, which is longer than the specified 0\n", "Created a chunk of size 405, which is longer than the specified 0\n", "Created a chunk of size 523, which is longer than the specified 0\n", "Created a chunk of size 793, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 389, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 1422, which is longer than the specified 0\n", "Created a chunk of size 1083, which is longer than the specified 0\n", "Created a chunk of size 1144, which is longer than the specified 0\n", "Created a chunk of size 1268, which is longer than the specified 0\n", "Created a chunk of size 790, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 1086, which is longer than the specified 0\n", "Created a chunk of size 874, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 876, which is longer than the specified 0\n", "Created a chunk of size 806, which is longer than the specified 0\n", "Created a chunk of size 1812, which is longer than the specified 0\n", "Created a chunk of size 1830, which is longer than the specified 0\n", "Created a chunk of size 1064, which is longer than the specified 0\n", "Created a chunk of size 955, which is longer than the specified 0\n", "Created a chunk of size 1180, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 1284, which is longer than the specified 0\n", "Created a chunk of size 1642, which is longer than the specified 0\n", "Created a chunk of size 757, which is longer than the specified 0\n", "Created a chunk of size 1930, which is longer than the specified 0\n", "Created a chunk of size 872, which is longer than the specified 0\n", "Created a chunk of size 2008, which is longer than the specified 0\n", "Created a chunk of size 2285, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 1003, which is longer than the specified 0\n", "Created a chunk of size 577, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 1142, which is longer than the specified 0\n", "Created a chunk of size 557, which is longer than the specified 0\n", "Created a chunk of size 1143, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 1086, which is longer than the specified 0\n", "Created a chunk of size 1483, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 1135, which is longer than the specified 0\n", "Created a chunk of size 722, which is longer than the specified 0\n", "Created a chunk of size 668, which is longer than the specified 0\n", "Created a chunk of size 765, which is longer than the specified 0\n", "Created a chunk of size 606, which is longer than the specified 0\n", "Created a chunk of size 570, which is longer than the specified 0\n", "Created a chunk of size 965, which is longer than the specified 0\n", "Created a chunk of size 857, which is longer than the specified 0\n", "Created a chunk of size 1032, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 367, which is longer than the specified 0\n", "Created a chunk of size 495, which is longer than the specified 0\n", "Created a chunk of size 652, which is longer than the specified 0\n", "Created a chunk of size 348, which is longer than the specified 0\n", "Created a chunk of size 733, which is longer than the specified 0\n", "Created a chunk of size 525, which is longer than the specified 0\n", "Created a chunk of size 1015, which is longer than the specified 0\n", "Created a chunk of size 970, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 688, which is longer than the specified 0\n", "Created a chunk of size 544, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 376, which is longer than the specified 0\n", "Created a chunk of size 931, which is longer than the specified 0\n", "Created a chunk of size 564, which is longer than the specified 0\n", "Created a chunk of size 854, which is longer than the specified 0\n", "Created a chunk of size 715, which is longer than the specified 0\n", "Created a chunk of size 749, which is longer than the specified 0\n", "Created a chunk of size 712, which is longer than the specified 0\n", "Created a chunk of size 324, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 1088, which is longer than the specified 0\n", "Created a chunk of size 723, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 704, which is longer than the specified 0\n", "Created a chunk of size 1912, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 485, which is longer than the specified 0\n", "Created a chunk of size 622, which is longer than the specified 0\n", "Created a chunk of size 559, which is longer than the specified 0\n", "Created a chunk of size 556, which is longer than the specified 0\n", "Created a chunk of size 386, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 425, which is longer than the specified 0\n", "Created a chunk of size 418, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 624, which is longer than the specified 0\n", "Created a chunk of size 2616, which is longer than the specified 0\n", "Created a chunk of size 1580, which is longer than the specified 0\n", "Created a chunk of size 389, which is longer than the specified 0\n", "Created a chunk of size 994, which is longer than the specified 0\n", "Created a chunk of size 847, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 336, which is longer than the specified 0\n", "Created a chunk of size 1530, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 2030, which is longer than the specified 0\n", "Created a chunk of size 396, which is longer than the specified 0\n", "Created a chunk of size 1619, which is longer than the specified 0\n", "Created a chunk of size 698, which is longer than the specified 0\n", "Created a chunk of size 822, which is longer than the specified 0\n", "Created a chunk of size 354, which is longer than the specified 0\n", "Created a chunk of size 843, which is longer than the specified 0\n", "Created a chunk of size 1189, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 508, which is longer than the specified 0\n", "Created a chunk of size 663, which is longer than the specified 0\n", "Created a chunk of size 1282, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 1268, which is longer than the specified 0\n", "Created a chunk of size 1277, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 1056, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 784, which is longer than the specified 0\n", "Created a chunk of size 969, which is longer than the specified 0\n", "Created a chunk of size 613, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 757, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 963, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 843, which is longer than the specified 0\n", "Created a chunk of size 786, which is longer than the specified 0\n", "Created a chunk of size 648, which is longer than the specified 0\n", "Created a chunk of size 984, which is longer than the specified 0\n", "Created a chunk of size 799, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 1163, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 1058, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 875, which is longer than the specified 0\n", "Created a chunk of size 817, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 755, which is longer than the specified 0\n", "Created a chunk of size 569, which is longer than the specified 0\n", "Created a chunk of size 628, which is longer than the specified 0\n", "Created a chunk of size 868, which is longer than the specified 0\n", "Created a chunk of size 620, which is longer than the specified 0\n", "Created a chunk of size 621, which is longer than the specified 0\n", "Created a chunk of size 1084, which is longer than the specified 0\n", "Created a chunk of size 2762, which is longer than the specified 0\n", "Created a chunk of size 1033, which is longer than the specified 0\n", "Created a chunk of size 758, which is longer than the specified 0\n", "Created a chunk of size 773, which is longer than the specified 0\n", "Created a chunk of size 634, which is longer than the specified 0\n", "Created a chunk of size 1010, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 1064, which is longer than the specified 0\n", "Created a chunk of size 492, which is longer than the specified 0\n", "Created a chunk of size 795, which is longer than the specified 0\n", "Created a chunk of size 699, which is longer than the specified 0\n", "Created a chunk of size 485, which is longer than the specified 0\n", "Created a chunk of size 372, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 1224, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 345, which is longer than the specified 0\n", "Created a chunk of size 657, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 767, which is longer than the specified 0\n", "Created a chunk of size 553, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 590, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 726, which is longer than the specified 0\n", "Created a chunk of size 1805, which is longer than the specified 0\n", "Created a chunk of size 1017, which is longer than the specified 0\n", "Created a chunk of size 684, which is longer than the specified 0\n", "Created a chunk of size 739, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 449, which is longer than the specified 0\n", "Created a chunk of size 472, which is longer than the specified 0\n", "Created a chunk of size 922, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 162, which is longer than the specified 0\n", "Created a chunk of size 967, which is longer than the specified 0\n", "Created a chunk of size 477, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 645, which is longer than the specified 0\n", "Created a chunk of size 676, which is longer than the specified 0\n", "Created a chunk of size 712, which is longer than the specified 0\n", "Created a chunk of size 799, which is longer than the specified 0\n", "Created a chunk of size 854, which is longer than the specified 0\n", "Created a chunk of size 670, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 854, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 760, which is longer than the specified 0\n", "Created a chunk of size 796, which is longer than the specified 0\n", "Created a chunk of size 679, which is longer than the specified 0\n", "Created a chunk of size 927, which is longer than the specified 0\n", "Created a chunk of size 1268, which is longer than the specified 0\n", "Created a chunk of size 733, which is longer than the specified 0\n", "Created a chunk of size 868, which is longer than the specified 0\n", "Created a chunk of size 931, which is longer than the specified 0\n", "Created a chunk of size 772, which is longer than the specified 0\n", "Created a chunk of size 770, which is longer than the specified 0\n", "Created a chunk of size 335, which is longer than the specified 0\n", "Created a chunk of size 649, which is longer than the specified 0\n", "Created a chunk of size 1771, which is longer than the specified 0\n", "Created a chunk of size 534, which is longer than the specified 0\n", "Created a chunk of size 824, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 599, which is longer than the specified 0\n", "Created a chunk of size 486, which is longer than the specified 0\n", "Created a chunk of size 969, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 491, which is longer than the specified 0\n", "Created a chunk of size 844, which is longer than the specified 0\n", "Created a chunk of size 876, which is longer than the specified 0\n", "Created a chunk of size 670, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 707, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 654, which is longer than the specified 0\n", "Created a chunk of size 1270, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 736, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 292, which is longer than the specified 0\n", "Created a chunk of size 1019, which is longer than the specified 0\n", "Created a chunk of size 364, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 777, which is longer than the specified 0\n", "Created a chunk of size 682, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 598, which is longer than the specified 0\n", "Created a chunk of size 663, which is longer than the specified 0\n", "Created a chunk of size 595, which is longer than the specified 0\n", "Created a chunk of size 857, which is longer than the specified 0\n", "Created a chunk of size 595, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 157, which is longer than the specified 0\n", "Created a chunk of size 537, which is longer than the specified 0\n", "Created a chunk of size 567, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 705, which is longer than the specified 0\n", "Created a chunk of size 848, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 542, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 1177, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 458, which is longer than the specified 0\n", "Created a chunk of size 904, which is longer than the specified 0\n", "Created a chunk of size 852, which is longer than the specified 0\n", "Created a chunk of size 507, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 1715, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 398, which is longer than the specified 0\n", "Created a chunk of size 845, which is longer than the specified 0\n", "Created a chunk of size 1681, which is longer than the specified 0\n", "Created a chunk of size 721, which is longer than the specified 0\n", "Created a chunk of size 659, which is longer than the specified 0\n", "Created a chunk of size 603, which is longer than the specified 0\n", "Created a chunk of size 991, which is longer than the specified 0\n", "Created a chunk of size 1128, which is longer than the specified 0\n", "Created a chunk of size 462, which is longer than the specified 0\n", "Created a chunk of size 2005, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 1171, which is longer than the specified 0\n", "Created a chunk of size 2141, which is longer than the specified 0\n", "Created a chunk of size 662, which is longer than the specified 0\n", "Created a chunk of size 1322, which is longer than the specified 0\n", "Created a chunk of size 526, which is longer than the specified 0\n", "Created a chunk of size 336, which is longer than the specified 0\n", "Created a chunk of size 372, which is longer than the specified 0\n", "Created a chunk of size 1112, which is longer than the specified 0\n", "Created a chunk of size 664, which is longer than the specified 0\n", "Created a chunk of size 908, which is longer than the specified 0\n", "Created a chunk of size 1316, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 691, which is longer than the specified 0\n", "Created a chunk of size 950, which is longer than the specified 0\n", "Created a chunk of size 1121, which is longer than the specified 0\n", "Created a chunk of size 776, which is longer than the specified 0\n", "Created a chunk of size 615, which is longer than the specified 0\n", "Created a chunk of size 423, which is longer than the specified 0\n", "Created a chunk of size 533, which is longer than the specified 0\n", "Created a chunk of size 1018, which is longer than the specified 0\n", "Created a chunk of size 725, which is longer than the specified 0\n", "Created a chunk of size 612, which is longer than the specified 0\n", "Created a chunk of size 629, which is longer than the specified 0\n", "Created a chunk of size 463, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 1007, which is longer than the specified 0\n", "Created a chunk of size 616, which is longer than the specified 0\n", "Created a chunk of size 884, which is longer than the specified 0\n", "Created a chunk of size 579, which is longer than the specified 0\n", "Created a chunk of size 911, which is longer than the specified 0\n", "Created a chunk of size 1057, which is longer than the specified 0\n", "Created a chunk of size 630, which is longer than the specified 0\n", "Created a chunk of size 1255, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 572, which is longer than the specified 0\n", "Created a chunk of size 1098, which is longer than the specified 0\n", "Created a chunk of size 907, which is longer than the specified 0\n", "Created a chunk of size 621, which is longer than the specified 0\n", "Created a chunk of size 381, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 354, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 409, which is longer than the specified 0\n", "Created a chunk of size 448, which is longer than the specified 0\n", "Created a chunk of size 877, which is longer than the specified 0\n", "Created a chunk of size 338, which is longer than the specified 0\n", "Created a chunk of size 1143, which is longer than the specified 0\n", "Created a chunk of size 877, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 620, which is longer than the specified 0\n", "Created a chunk of size 625, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 551, which is longer than the specified 0\n", "Created a chunk of size 396, which is longer than the specified 0\n", "Created a chunk of size 385, which is longer than the specified 0\n", "Created a chunk of size 841, which is longer than the specified 0\n", "Created a chunk of size 481, which is longer than the specified 0\n", "Created a chunk of size 714, which is longer than the specified 0\n", "Created a chunk of size 921, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 581, which is longer than the specified 0\n", "Created a chunk of size 744, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 800, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 541, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 750, which is longer than the specified 0\n", "Created a chunk of size 612, which is longer than the specified 0\n", "Created a chunk of size 495, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 611, which is longer than the specified 0\n", "Created a chunk of size 587, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 809, which is longer than the specified 0\n", "Created a chunk of size 599, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 1550, which is longer than the specified 0\n", "Created a chunk of size 590, which is longer than the specified 0\n", "Created a chunk of size 827, which is longer than the specified 0\n", "Created a chunk of size 664, which is longer than the specified 0\n", "Created a chunk of size 877, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 736, which is longer than the specified 0\n", "Created a chunk of size 429, which is longer than the specified 0\n", "Created a chunk of size 723, which is longer than the specified 0\n", "Created a chunk of size 507, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 422, which is longer than the specified 0\n", "Created a chunk of size 385, which is longer than the specified 0\n", "Created a chunk of size 923, which is longer than the specified 0\n", "Created a chunk of size 330, which is longer than the specified 0\n", "Created a chunk of size 547, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 1652, which is longer than the specified 0\n", "Created a chunk of size 873, which is longer than the specified 0\n", "Created a chunk of size 1495, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 474, which is longer than the specified 0\n", "Created a chunk of size 736, which is longer than the specified 0\n", "Created a chunk of size 527, which is longer than the specified 0\n", "Created a chunk of size 612, which is longer than the specified 0\n", "Created a chunk of size 799, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 436, which is longer than the specified 0\n", "Created a chunk of size 538, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 545, which is longer than the specified 0\n", "Created a chunk of size 329, which is longer than the specified 0\n", "Created a chunk of size 461, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 473, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 723, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 976, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 926, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 674, which is longer than the specified 0\n", "Created a chunk of size 789, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 636, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 160, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 416, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 615, which is longer than the specified 0\n", "Created a chunk of size 324, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 991, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 448, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 676, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 292, which is longer than the specified 0\n", "Created a chunk of size 450, which is longer than the specified 0\n", "Created a chunk of size 581, which is longer than the specified 0\n", "Created a chunk of size 583, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 775, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 530, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 613, which is longer than the specified 0\n", "Created a chunk of size 832, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 318, which is longer than the specified 0\n", "Created a chunk of size 434, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 824, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 465, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 886, which is longer than the specified 0\n", "Created a chunk of size 1277, which is longer than the specified 0\n", "Created a chunk of size 363, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 666, which is longer than the specified 0\n", "Created a chunk of size 847, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 1046, which is longer than the specified 0\n", "Created a chunk of size 670, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 465, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 914, which is longer than the specified 0\n", "Created a chunk of size 755, which is longer than the specified 0\n", "Created a chunk of size 757, which is longer than the specified 0\n", "Created a chunk of size 945, which is longer than the specified 0\n", "Created a chunk of size 905, which is longer than the specified 0\n", "Created a chunk of size 847, which is longer than the specified 0\n", "Created a chunk of size 865, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 802, which is longer than the specified 0\n", "Created a chunk of size 837, which is longer than the specified 0\n", "Created a chunk of size 754, which is longer than the specified 0\n", "Created a chunk of size 864, which is longer than the specified 0\n", "Created a chunk of size 799, which is longer than the specified 0\n", "Created a chunk of size 678, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 171, which is longer than the specified 0\n", "Created a chunk of size 513, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 360, which is longer than the specified 0\n", "Created a chunk of size 542, which is longer than the specified 0\n", "Created a chunk of size 816, which is longer than the specified 0\n", "Created a chunk of size 743, which is longer than the specified 0\n", "Created a chunk of size 672, which is longer than the specified 0\n", "Created a chunk of size 670, which is longer than the specified 0\n", "Created a chunk of size 476, which is longer than the specified 0\n", "Created a chunk of size 990, which is longer than the specified 0\n", "Created a chunk of size 767, which is longer than the specified 0\n", "Created a chunk of size 406, which is longer than the specified 0\n", "Created a chunk of size 994, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 572, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 474, which is longer than the specified 0\n", "Created a chunk of size 639, which is longer than the specified 0\n", "Created a chunk of size 607, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 1666, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 1616, which is longer than the specified 0\n", "Created a chunk of size 778, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 153, which is longer than the specified 0\n", "Created a chunk of size 574, which is longer than the specified 0\n", "Created a chunk of size 669, which is longer than the specified 0\n", "Created a chunk of size 816, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 442, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 520, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 487, which is longer than the specified 0\n", "Created a chunk of size 359, which is longer than the specified 0\n", "Created a chunk of size 607, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 733, which is longer than the specified 0\n", "Created a chunk of size 1095, which is longer than the specified 0\n", "Created a chunk of size 1597, which is longer than the specified 0\n", "Created a chunk of size 944, which is longer than the specified 0\n", "Created a chunk of size 1960, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 595, which is longer than the specified 0\n", "Created a chunk of size 1708, which is longer than the specified 0\n", "Created a chunk of size 895, which is longer than the specified 0\n", "Created a chunk of size 357, which is longer than the specified 0\n", "Created a chunk of size 634, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 994, which is longer than the specified 0\n", "Created a chunk of size 1947, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 1027, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 616, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 494, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 466, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 1807, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 617, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 642, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 1518, which is longer than the specified 0\n", "Created a chunk of size 753, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 371, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 298, which is longer than the specified 0\n", "Created a chunk of size 152, which is longer than the specified 0\n", "Created a chunk of size 301, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 616, which is longer than the specified 0\n", "Created a chunk of size 459, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 688, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 348, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 385, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 327, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 809, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 536, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 160, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 869, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 483, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 890, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 559, which is longer than the specified 0\n", "Created a chunk of size 1087, which is longer than the specified 0\n", "Created a chunk of size 416, which is longer than the specified 0\n", "Created a chunk of size 320, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 333, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 329, which is longer than the specified 0\n", "Created a chunk of size 730, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 353, which is longer than the specified 0\n", "Created a chunk of size 385, which is longer than the specified 0\n", "Created a chunk of size 333, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 532, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 615, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 148, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 1093, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 435, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 379, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 407, which is longer than the specified 0\n", "Created a chunk of size 407, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 149, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 878, which is longer than the specified 0\n", "Created a chunk of size 320, which is longer than the specified 0\n", "Created a chunk of size 979, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 988, which is longer than the specified 0\n", "Created a chunk of size 535, which is longer than the specified 0\n", "Created a chunk of size 1167, which is longer than the specified 0\n", "Created a chunk of size 1259, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 1480, which is longer than the specified 0\n", "Created a chunk of size 320, which is longer than the specified 0\n", "Created a chunk of size 816, which is longer than the specified 0\n", "Created a chunk of size 1037, which is longer than the specified 0\n", "Created a chunk of size 1085, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 1443, which is longer than the specified 0\n", "Created a chunk of size 1266, which is longer than the specified 0\n", "Created a chunk of size 1144, which is longer than the specified 0\n", "Created a chunk of size 1369, which is longer than the specified 0\n", "Created a chunk of size 1622, which is longer than the specified 0\n", "Created a chunk of size 1165, which is longer than the specified 0\n", "Created a chunk of size 152, which is longer than the specified 0\n", "Created a chunk of size 583, which is longer than the specified 0\n", "Created a chunk of size 783, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 1176, which is longer than the specified 0\n", "Created a chunk of size 1179, which is longer than the specified 0\n", "Created a chunk of size 730, which is longer than the specified 0\n", "Created a chunk of size 826, which is longer than the specified 0\n", "Created a chunk of size 595, which is longer than the specified 0\n", "Created a chunk of size 998, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 460, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 1009, which is longer than the specified 0\n", "Created a chunk of size 663, which is longer than the specified 0\n", "Created a chunk of size 1022, which is longer than the specified 0\n", "Created a chunk of size 745, which is longer than the specified 0\n", "Created a chunk of size 1357, which is longer than the specified 0\n", "Created a chunk of size 813, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 363, which is longer than the specified 0\n", "Created a chunk of size 424, which is longer than the specified 0\n", "Created a chunk of size 1172, which is longer than the specified 0\n", "Created a chunk of size 1394, which is longer than the specified 0\n", "Created a chunk of size 1216, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 463, which is longer than the specified 0\n", "Created a chunk of size 421, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 603, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 2209, which is longer than the specified 0\n", "Created a chunk of size 1371, which is longer than the specified 0\n", "Created a chunk of size 2877, which is longer than the specified 0\n", "Created a chunk of size 793, which is longer than the specified 0\n", "Created a chunk of size 789, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 1279, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 777, which is longer than the specified 0\n", "Created a chunk of size 1714, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 1638, which is longer than the specified 0\n", "Created a chunk of size 756, which is longer than the specified 0\n", "Created a chunk of size 511, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 517, which is longer than the specified 0\n", "Created a chunk of size 2398, which is longer than the specified 0\n", "Created a chunk of size 825, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 2120, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 1488, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 426, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 1691, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 765, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 843, which is longer than the specified 0\n", "Created a chunk of size 1418, which is longer than the specified 0\n", "Created a chunk of size 791, which is longer than the specified 0\n", "Created a chunk of size 1173, which is longer than the specified 0\n", "Created a chunk of size 1359, which is longer than the specified 0\n", "Created a chunk of size 458, which is longer than the specified 0\n", "Created a chunk of size 826, which is longer than the specified 0\n", "Created a chunk of size 915, which is longer than the specified 0\n", "Created a chunk of size 434, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 2181, which is longer than the specified 0\n", "Created a chunk of size 1093, which is longer than the specified 0\n", "Created a chunk of size 2171, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 1454, which is longer than the specified 0\n", "Created a chunk of size 1454, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 582, which is longer than the specified 0\n", "Created a chunk of size 1973, which is longer than the specified 0\n", "Created a chunk of size 1987, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 1648, which is longer than the specified 0\n", "Created a chunk of size 301, which is longer than the specified 0\n", "Created a chunk of size 2723, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 1632, which is longer than the specified 0\n", "Created a chunk of size 476, which is longer than the specified 0\n", "Created a chunk of size 938, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 503, which is longer than the specified 0\n", "Created a chunk of size 1284, which is longer than the specified 0\n", "Created a chunk of size 1484, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 692, which is longer than the specified 0\n", "Created a chunk of size 1049, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 467, which is longer than the specified 0\n", "Created a chunk of size 411, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 1003, which is longer than the specified 0\n", "Created a chunk of size 392, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 1150, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 451, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 1216, which is longer than the specified 0\n", "Created a chunk of size 899, which is longer than the specified 0\n", "Created a chunk of size 368, which is longer than the specified 0\n", "Created a chunk of size 610, which is longer than the specified 0\n", "Created a chunk of size 411, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 945, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 1032, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 2456, which is longer than the specified 0\n", "Created a chunk of size 983, which is longer than the specified 0\n", "Created a chunk of size 1349, which is longer than the specified 0\n", "Created a chunk of size 1271, which is longer than the specified 0\n", "Created a chunk of size 1117, which is longer than the specified 0\n", "Created a chunk of size 1548, which is longer than the specified 0\n", "Created a chunk of size 1201, which is longer than the specified 0\n", "Created a chunk of size 552, which is longer than the specified 0\n", "Created a chunk of size 502, which is longer than the specified 0\n", "Created a chunk of size 757, which is longer than the specified 0\n", "Created a chunk of size 975, which is longer than the specified 0\n", "Created a chunk of size 541, which is longer than the specified 0\n", "Created a chunk of size 996, which is longer than the specified 0\n", "Created a chunk of size 1160, which is longer than the specified 0\n", "Created a chunk of size 620, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 722, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 591, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 1149, which is longer than the specified 0\n", "Created a chunk of size 407, which is longer than the specified 0\n", "Created a chunk of size 837, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 964, which is longer than the specified 0\n", "Created a chunk of size 1024, which is longer than the specified 0\n", "Created a chunk of size 359, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 380, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 1774, which is longer than the specified 0\n", "Created a chunk of size 1165, which is longer than the specified 0\n", "Created a chunk of size 539, which is longer than the specified 0\n", "Created a chunk of size 1009, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 577, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 753, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 427, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 368, which is longer than the specified 0\n", "Created a chunk of size 431, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 1017, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 371, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 1323, which is longer than the specified 0\n", "Created a chunk of size 144, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 1213, which is longer than the specified 0\n", "Created a chunk of size 909, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 301, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 464, which is longer than the specified 0\n", "Created a chunk of size 399, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 663, which is longer than the specified 0\n", "Created a chunk of size 753, which is longer than the specified 0\n", "Created a chunk of size 375, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 556, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 1123, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 607, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 457, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 1598, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 493, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 1963, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 894, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 691, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 509, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 940, which is longer than the specified 0\n", "Created a chunk of size 2450, which is longer than the specified 0\n", "Created a chunk of size 1796, which is longer than the specified 0\n", "Created a chunk of size 1568, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 326, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 1219, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 321, which is longer than the specified 0\n", "Created a chunk of size 757, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 880, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 1380, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 854, which is longer than the specified 0\n", "Created a chunk of size 1452, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 1102, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 406, which is longer than the specified 0\n", "Created a chunk of size 1298, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 492, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 776, which is longer than the specified 0\n", "Created a chunk of size 335, which is longer than the specified 0\n", "Created a chunk of size 907, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 355, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 993, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 773, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 1761, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 1004, which is longer than the specified 0\n", "Created a chunk of size 336, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 1022, which is longer than the specified 0\n", "Created a chunk of size 768, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 656, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 387, which is longer than the specified 0\n", "Created a chunk of size 465, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 318, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 353, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 584, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 640, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 731, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 382, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 634, which is longer than the specified 0\n", "Created a chunk of size 923, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 377, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 1064, which is longer than the specified 0\n", "Created a chunk of size 868, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 1009, which is longer than the specified 0\n", "Created a chunk of size 880, which is longer than the specified 0\n", "Created a chunk of size 765, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 988, which is longer than the specified 0\n", "Created a chunk of size 788, which is longer than the specified 0\n", "Created a chunk of size 723, which is longer than the specified 0\n", "Created a chunk of size 340, which is longer than the specified 0\n", "Created a chunk of size 1064, which is longer than the specified 0\n", "Created a chunk of size 338, which is longer than the specified 0\n", "Created a chunk of size 1629, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 1593, which is longer than the specified 0\n", "Created a chunk of size 623, which is longer than the specified 0\n", "Created a chunk of size 825, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 1587, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 405, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 571, which is longer than the specified 0\n", "Created a chunk of size 1259, which is longer than the specified 0\n", "Created a chunk of size 1128, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 1105, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 481, which is longer than the specified 0\n", "Created a chunk of size 345, which is longer than the specified 0\n", "Created a chunk of size 848, which is longer than the specified 0\n", "Created a chunk of size 792, which is longer than the specified 0\n", "Created a chunk of size 782, which is longer than the specified 0\n", "Created a chunk of size 657, which is longer than the specified 0\n", "Created a chunk of size 949, which is longer than the specified 0\n", "Created a chunk of size 476, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 847, which is longer than the specified 0\n", "Created a chunk of size 758, which is longer than the specified 0\n", "Created a chunk of size 971, which is longer than the specified 0\n", "Created a chunk of size 683, which is longer than the specified 0\n", "Created a chunk of size 1080, which is longer than the specified 0\n", "Created a chunk of size 1533, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 371, which is longer than the specified 0\n", "Created a chunk of size 790, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 823, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 292, which is longer than the specified 0\n", "Created a chunk of size 1202, which is longer than the specified 0\n", "Created a chunk of size 1093, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 1247, which is longer than the specified 0\n", "Created a chunk of size 1056, which is longer than the specified 0\n", "Created a chunk of size 668, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 509, which is longer than the specified 0\n", "Created a chunk of size 369, which is longer than the specified 0\n", "Created a chunk of size 1211, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 550, which is longer than the specified 0\n", "Created a chunk of size 930, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 1011, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 996, which is longer than the specified 0\n", "Created a chunk of size 377, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 547, which is longer than the specified 0\n", "Created a chunk of size 1352, which is longer than the specified 0\n", "Created a chunk of size 1412, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 877, which is longer than the specified 0\n", "Created a chunk of size 1023, which is longer than the specified 0\n", "Created a chunk of size 1216, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 836, which is longer than the specified 0\n", "Created a chunk of size 1131, which is longer than the specified 0\n", "Created a chunk of size 492, which is longer than the specified 0\n", "Created a chunk of size 738, which is longer than the specified 0\n", "Created a chunk of size 682, which is longer than the specified 0\n", "Created a chunk of size 387, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 514, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 603, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 772, which is longer than the specified 0\n", "Created a chunk of size 777, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 985, which is longer than the specified 0\n", "Created a chunk of size 376, which is longer than the specified 0\n", "Created a chunk of size 804, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 956, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 159, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 885, which is longer than the specified 0\n", "Created a chunk of size 157, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 319, which is longer than the specified 0\n", "Created a chunk of size 292, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 557, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 367, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 590, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 1197, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 385, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 390, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 396, which is longer than the specified 0\n", "Created a chunk of size 1891, which is longer than the specified 0\n", "Created a chunk of size 318, which is longer than the specified 0\n", "Created a chunk of size 717, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 398, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 3168, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 1532, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 381, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 379, which is longer than the specified 0\n", "Created a chunk of size 330, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 344, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 373, which is longer than the specified 0\n", "Created a chunk of size 431, which is longer than the specified 0\n", "Created a chunk of size 364, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 407, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 1588, which is longer than the specified 0\n", "Created a chunk of size 962, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 324, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 445, which is longer than the specified 0\n", "Created a chunk of size 326, which is longer than the specified 0\n", "Created a chunk of size 416, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 451, which is longer than the specified 0\n", "Created a chunk of size 435, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 347, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 359, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 1609, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 1623, which is longer than the specified 0\n", "Created a chunk of size 1419, which is longer than the specified 0\n", "Created a chunk of size 758, which is longer than the specified 0\n", "Created a chunk of size 714, which is longer than the specified 0\n", "Created a chunk of size 1114, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 1128, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 679, which is longer than the specified 0\n", "Created a chunk of size 665, which is longer than the specified 0\n", "Created a chunk of size 1036, which is longer than the specified 0\n", "Created a chunk of size 1139, which is longer than the specified 0\n", "Created a chunk of size 1178, which is longer than the specified 0\n", "Created a chunk of size 1048, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 835, which is longer than the specified 0\n", "Created a chunk of size 1000, which is longer than the specified 0\n", "Created a chunk of size 589, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 473, which is longer than the specified 0\n", "Created a chunk of size 531, which is longer than the specified 0\n", "Created a chunk of size 579, which is longer than the specified 0\n", "Created a chunk of size 321, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 486, which is longer than the specified 0\n", "Created a chunk of size 458, which is longer than the specified 0\n", "Created a chunk of size 394, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 670, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 603, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 477, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 970, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 497, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 1211, which is longer than the specified 0\n", "Created a chunk of size 333, which is longer than the specified 0\n", "Created a chunk of size 882, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 846, which is longer than the specified 0\n", "Created a chunk of size 734, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 171, which is longer than the specified 0\n", "Created a chunk of size 551, which is longer than the specified 0\n", "Created a chunk of size 614, which is longer than the specified 0\n", "Created a chunk of size 572, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 579, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 949, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 402, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 388, which is longer than the specified 0\n", "Created a chunk of size 387, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 160, which is longer than the specified 0\n", "Created a chunk of size 414, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 440, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 507, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 339, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 329, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 316, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 318, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 336, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 457, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 274, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 1169, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 535, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 779, which is longer than the specified 0\n", "Created a chunk of size 353, which is longer than the specified 0\n", "Created a chunk of size 355, which is longer than the specified 0\n", "Created a chunk of size 511, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 842, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 694, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 161, which is longer than the specified 0\n", "Created a chunk of size 949, which is longer than the specified 0\n", "Created a chunk of size 318, which is longer than the specified 0\n", "Created a chunk of size 518, which is longer than the specified 0\n", "Created a chunk of size 653, which is longer than the specified 0\n", "Created a chunk of size 515, which is longer than the specified 0\n", "Created a chunk of size 675, which is longer than the specified 0\n", "Created a chunk of size 2034, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 721, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 992, which is longer than the specified 0\n", "Created a chunk of size 456, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 1115, which is longer than the specified 0\n", "Created a chunk of size 1436, which is longer than the specified 0\n", "Created a chunk of size 646, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 1113, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 774, which is longer than the specified 0\n", "Created a chunk of size 925, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 691, which is longer than the specified 0\n", "Created a chunk of size 888, which is longer than the specified 0\n", "Created a chunk of size 848, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 874, which is longer than the specified 0\n", "Created a chunk of size 792, which is longer than the specified 0\n", "Created a chunk of size 845, which is longer than the specified 0\n", "Created a chunk of size 791, which is longer than the specified 0\n", "Created a chunk of size 655, which is longer than the specified 0\n", "Created a chunk of size 962, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 414, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 274, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 377, which is longer than the specified 0\n", "Created a chunk of size 338, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 404, which is longer than the specified 0\n", "Created a chunk of size 445, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 438, which is longer than the specified 0\n", "Created a chunk of size 333, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 433, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 409, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 321, which is longer than the specified 0\n", "Created a chunk of size 418, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 978, which is longer than the specified 0\n", "Created a chunk of size 1062, which is longer than the specified 0\n", "Created a chunk of size 559, which is longer than the specified 0\n", "Created a chunk of size 984, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 994, which is longer than the specified 0\n", "Created a chunk of size 417, which is longer than the specified 0\n", "Created a chunk of size 340, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 460, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 404, which is longer than the specified 0\n", "Created a chunk of size 694, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 397, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 339, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 139, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 931, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 326, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 327, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 292, which is longer than the specified 0\n", "Created a chunk of size 384, which is longer than the specified 0\n", "Created a chunk of size 316, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 347, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 686, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 497, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 1471, which is longer than the specified 0\n", "Created a chunk of size 471, which is longer than the specified 0\n", "Created a chunk of size 1436, which is longer than the specified 0\n", "Created a chunk of size 409, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 526, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 355, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 403, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 637, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 949, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 449, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 384, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 339, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 375, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 728, which is longer than the specified 0\n", "Created a chunk of size 447, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 834, which is longer than the specified 0\n", "Created a chunk of size 344, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 641, which is longer than the specified 0\n", "Created a chunk of size 503, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 458, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 1330, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 443, which is longer than the specified 0\n", "Created a chunk of size 160, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 1721, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 455, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 157, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 372, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 321, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 316, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 326, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 414, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 312, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 952, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 1530, which is longer than the specified 0\n", "Created a chunk of size 656, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 985, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 1651, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 151, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 809, which is longer than the specified 0\n", "Created a chunk of size 695, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 1579, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 171, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 1646, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 1687, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 161, which is longer than the specified 0\n", "Created a chunk of size 160, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 600, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 152, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 410, which is longer than the specified 0\n", "Created a chunk of size 529, which is longer than the specified 0\n", "Created a chunk of size 673, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 421, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 152, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 391, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 142, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 782, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 363, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 330, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 757, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 420, which is longer than the specified 0\n", "Created a chunk of size 573, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 852, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 2031, which is longer than the specified 0\n", "Created a chunk of size 336, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 957, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 832, which is longer than the specified 0\n", "Created a chunk of size 832, which is longer than the specified 0\n", "Created a chunk of size 1107, which is longer than the specified 0\n", "Created a chunk of size 423, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 868, which is longer than the specified 0\n", "Created a chunk of size 1049, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 415, which is longer than the specified 0\n", "Created a chunk of size 479, which is longer than the specified 0\n", "Created a chunk of size 500, which is longer than the specified 0\n", "Created a chunk of size 492, which is longer than the specified 0\n", "Created a chunk of size 853, which is longer than the specified 0\n", "Created a chunk of size 880, which is longer than the specified 0\n", "Created a chunk of size 649, which is longer than the specified 0\n", "Created a chunk of size 563, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 706, which is longer than the specified 0\n", "Created a chunk of size 1118, which is longer than the specified 0\n", "Created a chunk of size 545, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 1089, which is longer than the specified 0\n", "Created a chunk of size 1103, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 1130, which is longer than the specified 0\n", "Created a chunk of size 753, which is longer than the specified 0\n", "Created a chunk of size 1338, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 664, which is longer than the specified 0\n", "Created a chunk of size 861, which is longer than the specified 0\n", "Created a chunk of size 478, which is longer than the specified 0\n", "Created a chunk of size 478, which is longer than the specified 0\n", "Created a chunk of size 1080, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 779, which is longer than the specified 0\n", "Created a chunk of size 629, which is longer than the specified 0\n", "Created a chunk of size 1163, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 731, which is longer than the specified 0\n", "Created a chunk of size 1003, which is longer than the specified 0\n", "Created a chunk of size 879, which is longer than the specified 0\n", "Created a chunk of size 369, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 147, which is longer than the specified 0\n", "Created a chunk of size 818, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 321, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 312, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 1085, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 633, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 592, which is longer than the specified 0\n", "Created a chunk of size 274, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 709, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 1003, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 376, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 452, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 338, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 329, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 323, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 446, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 379, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 926, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 1226, which is longer than the specified 0\n", "Created a chunk of size 932, which is longer than the specified 0\n", "Created a chunk of size 898, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 412, which is longer than the specified 0\n", "Created a chunk of size 1235, which is longer than the specified 0\n", "Created a chunk of size 2940, which is longer than the specified 0\n", "Created a chunk of size 537, which is longer than the specified 0\n", "Created a chunk of size 370, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 638, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 1118, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 653, which is longer than the specified 0\n", "Created a chunk of size 1490, which is longer than the specified 0\n", "Created a chunk of size 1157, which is longer than the specified 0\n", "Created a chunk of size 1208, which is longer than the specified 0\n", "Created a chunk of size 1489, which is longer than the specified 0\n", "Created a chunk of size 409, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 1086, which is longer than the specified 0\n", "Created a chunk of size 1802, which is longer than the specified 0\n", "Created a chunk of size 1595, which is longer than the specified 0\n", "Created a chunk of size 1030, which is longer than the specified 0\n", "Created a chunk of size 1361, which is longer than the specified 0\n", "Created a chunk of size 1643, which is longer than the specified 0\n", "Created a chunk of size 457, which is longer than the specified 0\n", "Created a chunk of size 1382, which is longer than the specified 0\n", "Created a chunk of size 814, which is longer than the specified 0\n", "Created a chunk of size 1763, which is longer than the specified 0\n", "Created a chunk of size 911, which is longer than the specified 0\n", "Created a chunk of size 1971, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 1240, which is longer than the specified 0\n", "Created a chunk of size 801, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 153, which is longer than the specified 0\n", "Created a chunk of size 478, which is longer than the specified 0\n", "Created a chunk of size 1119, which is longer than the specified 0\n", "Created a chunk of size 1051, which is longer than the specified 0\n", "Created a chunk of size 376, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 406, which is longer than the specified 0\n", "Created a chunk of size 1006, which is longer than the specified 0\n", "Created a chunk of size 156, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 457, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 1119, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 394, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 515, which is longer than the specified 0\n", "Created a chunk of size 333, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 672, which is longer than the specified 0\n", "Created a chunk of size 382, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 167, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 1127, which is longer than the specified 0\n", "Created a chunk of size 371, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 1037, which is longer than the specified 0\n", "Created a chunk of size 1280, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 1475, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 158, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 324, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 680, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 1268, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 1219, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 404, which is longer than the specified 0\n", "Created a chunk of size 364, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 900, which is longer than the specified 0\n", "Created a chunk of size 1003, which is longer than the specified 0\n", "Created a chunk of size 376, which is longer than the specified 0\n", "Created a chunk of size 618, which is longer than the specified 0\n", "Created a chunk of size 826, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 507, which is longer than the specified 0\n", "Created a chunk of size 1045, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 790, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 857, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 366, which is longer than the specified 0\n", "Created a chunk of size 526, which is longer than the specified 0\n", "Created a chunk of size 1052, which is longer than the specified 0\n", "Created a chunk of size 906, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 767, which is longer than the specified 0\n", "Created a chunk of size 751, which is longer than the specified 0\n", "Created a chunk of size 1017, which is longer than the specified 0\n", "Created a chunk of size 167, which is longer than the specified 0\n", "Created a chunk of size 806, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 567, which is longer than the specified 0\n", "Created a chunk of size 828, which is longer than the specified 0\n", "Created a chunk of size 557, which is longer than the specified 0\n", "Created a chunk of size 388, which is longer than the specified 0\n", "Created a chunk of size 626, which is longer than the specified 0\n", "Created a chunk of size 471, which is longer than the specified 0\n", "Created a chunk of size 394, which is longer than the specified 0\n", "Created a chunk of size 706, which is longer than the specified 0\n", "Created a chunk of size 465, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 373, which is longer than the specified 0\n", "Created a chunk of size 662, which is longer than the specified 0\n", "Created a chunk of size 908, which is longer than the specified 0\n", "Created a chunk of size 760, which is longer than the specified 0\n", "Created a chunk of size 470, which is longer than the specified 0\n", "Created a chunk of size 856, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 970, which is longer than the specified 0\n", "Created a chunk of size 1177, which is longer than the specified 0\n", "Created a chunk of size 537, which is longer than the specified 0\n", "Created a chunk of size 464, which is longer than the specified 0\n", "Created a chunk of size 559, which is longer than the specified 0\n", "Created a chunk of size 347, which is longer than the specified 0\n", "Created a chunk of size 1246, which is longer than the specified 0\n", "Created a chunk of size 905, which is longer than the specified 0\n", "Created a chunk of size 598, which is longer than the specified 0\n", "Created a chunk of size 615, which is longer than the specified 0\n", "Created a chunk of size 591, which is longer than the specified 0\n", "Created a chunk of size 1049, which is longer than the specified 0\n", "Created a chunk of size 418, which is longer than the specified 0\n", "Created a chunk of size 1125, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 651, which is longer than the specified 0\n", "Created a chunk of size 1127, which is longer than the specified 0\n", "Created a chunk of size 553, which is longer than the specified 0\n", "Created a chunk of size 768, which is longer than the specified 0\n", "Created a chunk of size 783, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 1025, which is longer than the specified 0\n", "Created a chunk of size 312, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 387, which is longer than the specified 0\n", "Created a chunk of size 632, which is longer than the specified 0\n", "Created a chunk of size 882, which is longer than the specified 0\n", "Created a chunk of size 474, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 323, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 145, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 499, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 733, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 171, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 162, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 1290, which is longer than the specified 0\n", "Created a chunk of size 1091, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 539, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 608, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 383, which is longer than the specified 0\n", "Created a chunk of size 327, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 703, which is longer than the specified 0\n", "Created a chunk of size 301, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 520, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 287, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 148, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 315, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 369, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 366, which is longer than the specified 0\n", "Created a chunk of size 351, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 355, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 316, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 1564, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 1149, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 661, which is longer than the specified 0\n", "Created a chunk of size 1214, which is longer than the specified 0\n", "Created a chunk of size 1215, which is longer than the specified 0\n", "Created a chunk of size 1066, which is longer than the specified 0\n", "Created a chunk of size 713, which is longer than the specified 0\n", "Created a chunk of size 382, which is longer than the specified 0\n", "Created a chunk of size 1081, which is longer than the specified 0\n", "Created a chunk of size 750, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 546, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 857, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 345, which is longer than the specified 0\n", "Created a chunk of size 478, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 1042, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 709, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 487, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 1255, which is longer than the specified 0\n", "Created a chunk of size 167, which is longer than the specified 0\n", "Created a chunk of size 438, which is longer than the specified 0\n", "Created a chunk of size 692, which is longer than the specified 0\n", "Created a chunk of size 419, which is longer than the specified 0\n", "Created a chunk of size 555, which is longer than the specified 0\n", "Created a chunk of size 442, which is longer than the specified 0\n", "Created a chunk of size 1173, which is longer than the specified 0\n", "Created a chunk of size 421, which is longer than the specified 0\n", "Created a chunk of size 474, which is longer than the specified 0\n", "Created a chunk of size 766, which is longer than the specified 0\n", "Created a chunk of size 842, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 491, which is longer than the specified 0\n", "Created a chunk of size 585, which is longer than the specified 0\n", "Created a chunk of size 666, which is longer than the specified 0\n", "Created a chunk of size 875, which is longer than the specified 0\n", "Created a chunk of size 699, which is longer than the specified 0\n", "Created a chunk of size 650, which is longer than the specified 0\n", "Created a chunk of size 674, which is longer than the specified 0\n", "Created a chunk of size 478, which is longer than the specified 0\n", "Created a chunk of size 519, which is longer than the specified 0\n", "Created a chunk of size 630, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 605, which is longer than the specified 0\n", "Created a chunk of size 594, which is longer than the specified 0\n", "Created a chunk of size 446, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 598, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 1075, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 156, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 606, which is longer than the specified 0\n", "Created a chunk of size 1263, which is longer than the specified 0\n", "Created a chunk of size 392, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 147, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 1620, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 708, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 707, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 627, which is longer than the specified 0\n", "Created a chunk of size 994, which is longer than the specified 0\n", "Created a chunk of size 840, which is longer than the specified 0\n", "Created a chunk of size 797, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 451, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 1061, which is longer than the specified 0\n", "Created a chunk of size 1579, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 637, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 662, which is longer than the specified 0\n", "Created a chunk of size 764, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 339, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 672, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 151, which is longer than the specified 0\n", "Created a chunk of size 139, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 372, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 390, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 1041, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 478, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 384, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 692, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 827, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 392, which is longer than the specified 0\n", "Created a chunk of size 641, which is longer than the specified 0\n", "Created a chunk of size 1045, which is longer than the specified 0\n", "Created a chunk of size 707, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 323, which is longer than the specified 0\n", "Created a chunk of size 389, which is longer than the specified 0\n", "Created a chunk of size 370, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 318, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 1450, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 312, which is longer than the specified 0\n", "Created a chunk of size 495, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 1443, which is longer than the specified 0\n", "Created a chunk of size 1285, which is longer than the specified 0\n", "Created a chunk of size 941, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 684, which is longer than the specified 0\n", "Created a chunk of size 800, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 857, which is longer than the specified 0\n", "Created a chunk of size 516, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 475, which is longer than the specified 0\n", "Created a chunk of size 1082, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 418, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 1006, which is longer than the specified 0\n", "Created a chunk of size 1309, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 886, which is longer than the specified 0\n", "Created a chunk of size 809, which is longer than the specified 0\n", "Created a chunk of size 1126, which is longer than the specified 0\n", "Created a chunk of size 1158, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 539, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 171, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 312, which is longer than the specified 0\n", "Created a chunk of size 639, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 781, which is longer than the specified 0\n", "Created a chunk of size 380, which is longer than the specified 0\n", "Created a chunk of size 160, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 1922, which is longer than the specified 0\n", "Created a chunk of size 495, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 733, which is longer than the specified 0\n", "Created a chunk of size 1912, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 1200, which is longer than the specified 0\n", "Created a chunk of size 1166, which is longer than the specified 0\n", "Created a chunk of size 2146, which is longer than the specified 0\n", "Created a chunk of size 315, which is longer than the specified 0\n", "Created a chunk of size 2490, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 1373, which is longer than the specified 0\n", "Created a chunk of size 910, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 1475, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 841, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 640, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 729, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 351, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 389, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 156, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 749, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 738, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 145, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 319, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 1965, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 150, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 624, which is longer than the specified 0\n", "Created a chunk of size 1621, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 606, which is longer than the specified 0\n", "Created a chunk of size 757, which is longer than the specified 0\n", "Created a chunk of size 3784, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 663, which is longer than the specified 0\n", "Created a chunk of size 715, which is longer than the specified 0\n", "Created a chunk of size 1055, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 616, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 725, which is longer than the specified 0\n", "Created a chunk of size 571, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 434, which is longer than the specified 0\n", "Created a chunk of size 452, which is longer than the specified 0\n", "Created a chunk of size 467, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 1446, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 610, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 172, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 928, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 1098, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 989, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 1199, which is longer than the specified 0\n", "Created a chunk of size 725, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 1492, which is longer than the specified 0\n", "Created a chunk of size 2702, which is longer than the specified 0\n", "Created a chunk of size 5836, which is longer than the specified 0\n", "Created a chunk of size 1709, which is longer than the specified 0\n", "Created a chunk of size 1678, which is longer than the specified 0\n", "Created a chunk of size 681, which is longer than the specified 0\n", "Created a chunk of size 793, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 1808, which is longer than the specified 0\n", "Created a chunk of size 1171, which is longer than the specified 0\n", "Created a chunk of size 1739, which is longer than the specified 0\n", "Created a chunk of size 548, which is longer than the specified 0\n", "Created a chunk of size 666, which is longer than the specified 0\n", "Created a chunk of size 1616, which is longer than the specified 0\n", "Created a chunk of size 643, which is longer than the specified 0\n", "Created a chunk of size 1477, which is longer than the specified 0\n", "Created a chunk of size 1348, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 1441, which is longer than the specified 0\n", "Created a chunk of size 1866, which is longer than the specified 0\n", "Created a chunk of size 1464, which is longer than the specified 0\n", "Created a chunk of size 1277, which is longer than the specified 0\n", "Created a chunk of size 359, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 632, which is longer than the specified 0\n", "Created a chunk of size 606, which is longer than the specified 0\n", "Created a chunk of size 694, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 640, which is longer than the specified 0\n", "Created a chunk of size 997, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 315, which is longer than the specified 0\n", "Created a chunk of size 1086, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 147, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 907, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 561, which is longer than the specified 0\n", "Created a chunk of size 759, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 948, which is longer than the specified 0\n", "Created a chunk of size 664, which is longer than the specified 0\n", "Created a chunk of size 1016, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 363, which is longer than the specified 0\n", "Created a chunk of size 1756, which is longer than the specified 0\n", "Created a chunk of size 514, which is longer than the specified 0\n", "Created a chunk of size 492, which is longer than the specified 0\n", "Created a chunk of size 347, which is longer than the specified 0\n", "Created a chunk of size 1555, which is longer than the specified 0\n", "Created a chunk of size 1122, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 1960, which is longer than the specified 0\n", "Created a chunk of size 2075, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 461, which is longer than the specified 0\n", "Created a chunk of size 1482, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 735, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 640, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 904, which is longer than the specified 0\n", "Created a chunk of size 453, which is longer than the specified 0\n", "Created a chunk of size 548, which is longer than the specified 0\n", "Created a chunk of size 596, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 609, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 956, which is longer than the specified 0\n", "Created a chunk of size 996, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 804, which is longer than the specified 0\n", "Created a chunk of size 1469, which is longer than the specified 0\n", "Created a chunk of size 416, which is longer than the specified 0\n", "Created a chunk of size 298, which is longer than the specified 0\n", "Created a chunk of size 498, which is longer than the specified 0\n", "Created a chunk of size 759, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 340, which is longer than the specified 0\n", "Created a chunk of size 695, which is longer than the specified 0\n", "Created a chunk of size 750, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 1370, which is longer than the specified 0\n", "Created a chunk of size 922, which is longer than the specified 0\n", "Created a chunk of size 1381, which is longer than the specified 0\n", "Created a chunk of size 1105, which is longer than the specified 0\n", "Created a chunk of size 920, which is longer than the specified 0\n", "Created a chunk of size 749, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 151, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 515, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 790, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 1345, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 373, which is longer than the specified 0\n", "Created a chunk of size 900, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 446, which is longer than the specified 0\n", "Created a chunk of size 637, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 1144, which is longer than the specified 0\n", "Created a chunk of size 1099, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 944, which is longer than the specified 0\n", "Created a chunk of size 1171, which is longer than the specified 0\n", "Created a chunk of size 443, which is longer than the specified 0\n", "Created a chunk of size 1343, which is longer than the specified 0\n", "Created a chunk of size 818, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 381, which is longer than the specified 0\n", "Created a chunk of size 1456, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 1010, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 448, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 755, which is longer than the specified 0\n", "Created a chunk of size 2002, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 1853, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 1141, which is longer than the specified 0\n", "Created a chunk of size 1362, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 353, which is longer than the specified 0\n", "Created a chunk of size 1581, which is longer than the specified 0\n", "Created a chunk of size 1201, which is longer than the specified 0\n", "Created a chunk of size 481, which is longer than the specified 0\n", "Created a chunk of size 1510, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 1480, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 386, which is longer than the specified 0\n", "Created a chunk of size 1326, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 897, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 809, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 366, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 1307, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 770, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 885, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 492, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 1191, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 994, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 587, which is longer than the specified 0\n", "Created a chunk of size 724, which is longer than the specified 0\n", "Created a chunk of size 832, which is longer than the specified 0\n", "Created a chunk of size 742, which is longer than the specified 0\n", "Created a chunk of size 996, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 350, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 323, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 450, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 1431, which is longer than the specified 0\n", "Created a chunk of size 1077, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 1038, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 1110, which is longer than the specified 0\n", "Created a chunk of size 1314, which is longer than the specified 0\n", "Created a chunk of size 958, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 1415, which is longer than the specified 0\n", "Created a chunk of size 1863, which is longer than the specified 0\n", "Created a chunk of size 1379, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 516, which is longer than the specified 0\n", "Created a chunk of size 501, which is longer than the specified 0\n", "Created a chunk of size 1519, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 1078, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 1432, which is longer than the specified 0\n", "Created a chunk of size 759, which is longer than the specified 0\n", "Created a chunk of size 1246, which is longer than the specified 0\n", "Created a chunk of size 1549, which is longer than the specified 0\n", "Created a chunk of size 739, which is longer than the specified 0\n", "Created a chunk of size 1064, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 564, which is longer than the specified 0\n", "Created a chunk of size 465, which is longer than the specified 0\n", "Created a chunk of size 592, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 416, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 531, which is longer than the specified 0\n", "Created a chunk of size 1172, which is longer than the specified 0\n", "Created a chunk of size 1094, which is longer than the specified 0\n", "Created a chunk of size 815, which is longer than the specified 0\n", "Created a chunk of size 2082, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 594, which is longer than the specified 0\n", "Created a chunk of size 702, which is longer than the specified 0\n", "Created a chunk of size 604, which is longer than the specified 0\n", "Created a chunk of size 576, which is longer than the specified 0\n", "Created a chunk of size 829, which is longer than the specified 0\n", "Created a chunk of size 788, which is longer than the specified 0\n", "Created a chunk of size 797, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 855, which is longer than the specified 0\n", "Created a chunk of size 766, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 568, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 557, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 138, which is longer than the specified 0\n", "Created a chunk of size 487, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 478, which is longer than the specified 0\n", "Created a chunk of size 621, which is longer than the specified 0\n", "Created a chunk of size 354, which is longer than the specified 0\n", "Created a chunk of size 553, which is longer than the specified 0\n", "Created a chunk of size 682, which is longer than the specified 0\n", "Created a chunk of size 1248, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 650, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 369, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 804, which is longer than the specified 0\n", "Created a chunk of size 357, which is longer than the specified 0\n", "Created a chunk of size 2297, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 901, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 604, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 988, which is longer than the specified 0\n", "Created a chunk of size 754, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 778, which is longer than the specified 0\n", "Created a chunk of size 992, which is longer than the specified 0\n", "Created a chunk of size 780, which is longer than the specified 0\n", "Created a chunk of size 978, which is longer than the specified 0\n", "Created a chunk of size 984, which is longer than the specified 0\n", "Created a chunk of size 589, which is longer than the specified 0\n", "Created a chunk of size 703, which is longer than the specified 0\n", "Created a chunk of size 433, which is longer than the specified 0\n", "Created a chunk of size 690, which is longer than the specified 0\n", "Created a chunk of size 2071, which is longer than the specified 0\n", "Created a chunk of size 859, which is longer than the specified 0\n", "Created a chunk of size 628, which is longer than the specified 0\n", "Created a chunk of size 452, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 747, which is longer than the specified 0\n", "Created a chunk of size 692, which is longer than the specified 0\n", "Created a chunk of size 549, which is longer than the specified 0\n", "Created a chunk of size 620, which is longer than the specified 0\n", "Created a chunk of size 388, which is longer than the specified 0\n", "Created a chunk of size 876, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 849, which is longer than the specified 0\n", "Created a chunk of size 549, which is longer than the specified 0\n", "Created a chunk of size 363, which is longer than the specified 0\n", "Created a chunk of size 914, which is longer than the specified 0\n", "Created a chunk of size 522, which is longer than the specified 0\n", "Created a chunk of size 706, which is longer than the specified 0\n", "Created a chunk of size 315, which is longer than the specified 0\n", "Created a chunk of size 986, which is longer than the specified 0\n", "Created a chunk of size 1067, which is longer than the specified 0\n", "Created a chunk of size 793, which is longer than the specified 0\n", "Created a chunk of size 734, which is longer than the specified 0\n", "Created a chunk of size 772, which is longer than the specified 0\n", "Created a chunk of size 384, which is longer than the specified 0\n", "Created a chunk of size 537, which is longer than the specified 0\n", "Created a chunk of size 694, which is longer than the specified 0\n", "Created a chunk of size 760, which is longer than the specified 0\n", "Created a chunk of size 976, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 356, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 428, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 428, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 1428, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 662, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 1017, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 167, which is longer than the specified 0\n", "Created a chunk of size 978, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 451, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 794, which is longer than the specified 0\n", "Created a chunk of size 423, which is longer than the specified 0\n", "Created a chunk of size 728, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 530, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 159, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 468, which is longer than the specified 0\n", "Created a chunk of size 420, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 1739, which is longer than the specified 0\n", "Created a chunk of size 1086, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 1261, which is longer than the specified 0\n", "Created a chunk of size 2021, which is longer than the specified 0\n", "Created a chunk of size 1077, which is longer than the specified 0\n", "Created a chunk of size 2022, which is longer than the specified 0\n", "Created a chunk of size 996, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 1267, which is longer than the specified 0\n", "Created a chunk of size 1294, which is longer than the specified 0\n", "Created a chunk of size 1250, which is longer than the specified 0\n", "Created a chunk of size 1143, which is longer than the specified 0\n", "Created a chunk of size 1406, which is longer than the specified 0\n", "Created a chunk of size 1395, which is longer than the specified 0\n", "Created a chunk of size 1533, which is longer than the specified 0\n", "Created a chunk of size 1344, which is longer than the specified 0\n", "Created a chunk of size 1435, which is longer than the specified 0\n", "Created a chunk of size 1145, which is longer than the specified 0\n", "Created a chunk of size 1219, which is longer than the specified 0\n", "Created a chunk of size 1321, which is longer than the specified 0\n", "Created a chunk of size 1442, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 596, which is longer than the specified 0\n", "Created a chunk of size 762, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 338, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 377, which is longer than the specified 0\n", "Created a chunk of size 1625, which is longer than the specified 0\n", "Created a chunk of size 901, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 417, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 1162, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 971, which is longer than the specified 0\n", "Created a chunk of size 298, which is longer than the specified 0\n", "Created a chunk of size 1333, which is longer than the specified 0\n", "Created a chunk of size 1154, which is longer than the specified 0\n", "Created a chunk of size 2372, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 631, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 862, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 301, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 593, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 1679, which is longer than the specified 0\n", "Created a chunk of size 373, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 382, which is longer than the specified 0\n", "Created a chunk of size 321, which is longer than the specified 0\n", "Created a chunk of size 280, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 996, which is longer than the specified 0\n", "Created a chunk of size 1107, which is longer than the specified 0\n", "Created a chunk of size 1193, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 749, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 322, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 905, which is longer than the specified 0\n", "Created a chunk of size 714, which is longer than the specified 0\n", "Created a chunk of size 1334, which is longer than the specified 0\n", "Created a chunk of size 914, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 605, which is longer than the specified 0\n", "Created a chunk of size 1307, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 1144, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 316, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 156, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 1053, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 927, which is longer than the specified 0\n", "Created a chunk of size 347, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 333, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 466, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 405, which is longer than the specified 0\n", "Created a chunk of size 413, which is longer than the specified 0\n", "Created a chunk of size 407, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 477, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 417, which is longer than the specified 0\n", "Created a chunk of size 654, which is longer than the specified 0\n", "Created a chunk of size 770, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 492, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 360, which is longer than the specified 0\n", "Created a chunk of size 451, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 872, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 646, which is longer than the specified 0\n", "Created a chunk of size 1015, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 520, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 636, which is longer than the specified 0\n", "Created a chunk of size 1060, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 316, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 330, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 1162, which is longer than the specified 0\n", "Created a chunk of size 539, which is longer than the specified 0\n", "Created a chunk of size 978, which is longer than the specified 0\n", "Created a chunk of size 780, which is longer than the specified 0\n", "Created a chunk of size 816, which is longer than the specified 0\n", "Created a chunk of size 1069, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 586, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 372, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 1981, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 980, which is longer than the specified 0\n", "Created a chunk of size 842, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 445, which is longer than the specified 0\n", "Created a chunk of size 344, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 1106, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 500, which is longer than the specified 0\n", "Created a chunk of size 278, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 864, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 383, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 681, which is longer than the specified 0\n", "Created a chunk of size 392, which is longer than the specified 0\n", "Created a chunk of size 1627, which is longer than the specified 0\n", "Created a chunk of size 603, which is longer than the specified 0\n", "Created a chunk of size 918, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 1297, which is longer than the specified 0\n", "Created a chunk of size 934, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 1745, which is longer than the specified 0\n", "Created a chunk of size 1070, which is longer than the specified 0\n", "Created a chunk of size 348, which is longer than the specified 0\n", "Created a chunk of size 156, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 915, which is longer than the specified 0\n", "Created a chunk of size 1086, which is longer than the specified 0\n", "Created a chunk of size 1024, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 1201, which is longer than the specified 0\n", "Created a chunk of size 369, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 867, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 359, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 344, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 162, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 161, which is longer than the specified 0\n", "Created a chunk of size 370, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 1722, which is longer than the specified 0\n", "Created a chunk of size 1057, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 383, which is longer than the specified 0\n", "Created a chunk of size 1528, which is longer than the specified 0\n", "Created a chunk of size 876, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 580, which is longer than the specified 0\n", "Created a chunk of size 869, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 1032, which is longer than the specified 0\n", "Created a chunk of size 976, which is longer than the specified 0\n", "Created a chunk of size 297, which is longer than the specified 0\n", "Created a chunk of size 477, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 323, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 577, which is longer than the specified 0\n", "Created a chunk of size 754, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 1327, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 585, which is longer than the specified 0\n", "Created a chunk of size 579, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 159, which is longer than the specified 0\n", "Created a chunk of size 865, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 767, which is longer than the specified 0\n", "Created a chunk of size 527, which is longer than the specified 0\n", "Created a chunk of size 1001, which is longer than the specified 0\n", "Created a chunk of size 1174, which is longer than the specified 0\n", "Created a chunk of size 861, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 399, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 683, which is longer than the specified 0\n", "Created a chunk of size 475, which is longer than the specified 0\n", "Created a chunk of size 1382, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 366, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 430, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 784, which is longer than the specified 0\n", "Created a chunk of size 426, which is longer than the specified 0\n", "Created a chunk of size 776, which is longer than the specified 0\n", "Created a chunk of size 355, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 842, which is longer than the specified 0\n", "Created a chunk of size 995, which is longer than the specified 0\n", "Created a chunk of size 327, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 301, which is longer than the specified 0\n", "Created a chunk of size 219, which is longer than the specified 0\n", "Created a chunk of size 448, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 2351, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 377, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 465, which is longer than the specified 0\n", "Created a chunk of size 546, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 879, which is longer than the specified 0\n", "Created a chunk of size 901, which is longer than the specified 0\n", "Created a chunk of size 380, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 326, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 348, which is longer than the specified 0\n", "Created a chunk of size 263, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 386, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 307, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 438, which is longer than the specified 0\n", "Created a chunk of size 340, which is longer than the specified 0\n", "Created a chunk of size 353, which is longer than the specified 0\n", "Created a chunk of size 354, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 390, which is longer than the specified 0\n", "Created a chunk of size 350, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 384, which is longer than the specified 0\n", "Created a chunk of size 1850, which is longer than the specified 0\n", "Created a chunk of size 1280, which is longer than the specified 0\n", "Created a chunk of size 886, which is longer than the specified 0\n", "Created a chunk of size 1392, which is longer than the specified 0\n", "Created a chunk of size 979, which is longer than the specified 0\n", "Created a chunk of size 1432, which is longer than the specified 0\n", "Created a chunk of size 348, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 228, which is longer than the specified 0\n", "Created a chunk of size 776, which is longer than the specified 0\n", "Created a chunk of size 727, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 1526, which is longer than the specified 0\n", "Created a chunk of size 351, which is longer than the specified 0\n", "Created a chunk of size 1193, which is longer than the specified 0\n", "Created a chunk of size 1186, which is longer than the specified 0\n", "Created a chunk of size 1299, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 340, which is longer than the specified 0\n", "Created a chunk of size 310, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 1093, which is longer than the specified 0\n", "Created a chunk of size 1097, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 953, which is longer than the specified 0\n", "Created a chunk of size 1069, which is longer than the specified 0\n", "Created a chunk of size 1100, which is longer than the specified 0\n", "Created a chunk of size 1262, which is longer than the specified 0\n", "Created a chunk of size 917, which is longer than the specified 0\n", "Created a chunk of size 1222, which is longer than the specified 0\n", "Created a chunk of size 1034, which is longer than the specified 0\n", "Created a chunk of size 1283, which is longer than the specified 0\n", "Created a chunk of size 1328, which is longer than the specified 0\n", "Created a chunk of size 402, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 418, which is longer than the specified 0\n", "Created a chunk of size 1789, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 148, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 1476, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 394, which is longer than the specified 0\n", "Created a chunk of size 861, which is longer than the specified 0\n", "Created a chunk of size 915, which is longer than the specified 0\n", "Created a chunk of size 861, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 466, which is longer than the specified 0\n", "Created a chunk of size 925, which is longer than the specified 0\n", "Created a chunk of size 686, which is longer than the specified 0\n", "Created a chunk of size 466, which is longer than the specified 0\n", "Created a chunk of size 1654, which is longer than the specified 0\n", "Created a chunk of size 936, which is longer than the specified 0\n", "Created a chunk of size 281, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 347, which is longer than the specified 0\n", "Created a chunk of size 359, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 542, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 1354, which is longer than the specified 0\n", "Created a chunk of size 1060, which is longer than the specified 0\n", "Created a chunk of size 677, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 167, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 423, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 162, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 171, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 149, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 379, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 326, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 729, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 661, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 569, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 545, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 935, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 403, which is longer than the specified 0\n", "Created a chunk of size 339, which is longer than the specified 0\n", "Created a chunk of size 177, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 364, which is longer than the specified 0\n", "Created a chunk of size 368, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 245, which is longer than the specified 0\n", "Created a chunk of size 586, which is longer than the specified 0\n", "Created a chunk of size 622, which is longer than the specified 0\n", "Created a chunk of size 441, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 380, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 340, which is longer than the specified 0\n", "Created a chunk of size 353, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 424, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 1363, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 534, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 448, which is longer than the specified 0\n", "Created a chunk of size 354, which is longer than the specified 0\n", "Created a chunk of size 662, which is longer than the specified 0\n", "Created a chunk of size 2350, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 982, which is longer than the specified 0\n", "Created a chunk of size 514, which is longer than the specified 0\n", "Created a chunk of size 376, which is longer than the specified 0\n", "Created a chunk of size 882, which is longer than the specified 0\n", "Created a chunk of size 993, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 1174, which is longer than the specified 0\n", "Created a chunk of size 961, which is longer than the specified 0\n", "Created a chunk of size 721, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 386, which is longer than the specified 0\n", "Created a chunk of size 1650, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 193, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 370, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 904, which is longer than the specified 0\n", "Created a chunk of size 1042, which is longer than the specified 0\n", "Created a chunk of size 549, which is longer than the specified 0\n", "Created a chunk of size 221, which is longer than the specified 0\n", "Created a chunk of size 157, which is longer than the specified 0\n", "Created a chunk of size 1528, which is longer than the specified 0\n", "Created a chunk of size 1995, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 988, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 473, which is longer than the specified 0\n", "Created a chunk of size 169, which is longer than the specified 0\n", "Created a chunk of size 549, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 828, which is longer than the specified 0\n", "Created a chunk of size 856, which is longer than the specified 0\n", "Created a chunk of size 1025, which is longer than the specified 0\n", "Created a chunk of size 535, which is longer than the specified 0\n", "Created a chunk of size 939, which is longer than the specified 0\n", "Created a chunk of size 1352, which is longer than the specified 0\n", "Created a chunk of size 1400, which is longer than the specified 0\n", "Created a chunk of size 824, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 605, which is longer than the specified 0\n", "Created a chunk of size 1745, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 323, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 533, which is longer than the specified 0\n", "Created a chunk of size 547, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 383, which is longer than the specified 0\n", "Created a chunk of size 495, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 871, which is longer than the specified 0\n", "Created a chunk of size 2334, which is longer than the specified 0\n", "Created a chunk of size 2946, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 804, which is longer than the specified 0\n", "Created a chunk of size 710, which is longer than the specified 0\n", "Created a chunk of size 3243, which is longer than the specified 0\n", "Created a chunk of size 2780, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 627, which is longer than the specified 0\n", "Created a chunk of size 672, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 736, which is longer than the specified 0\n", "Created a chunk of size 515, which is longer than the specified 0\n", "Created a chunk of size 887, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 393, which is longer than the specified 0\n", "Created a chunk of size 908, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 1309, which is longer than the specified 0\n", "Created a chunk of size 1127, which is longer than the specified 0\n", "Created a chunk of size 1117, which is longer than the specified 0\n", "Created a chunk of size 495, which is longer than the specified 0\n", "Created a chunk of size 1194, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 726, which is longer than the specified 0\n", "Created a chunk of size 386, which is longer than the specified 0\n", "Created a chunk of size 832, which is longer than the specified 0\n", "Created a chunk of size 803, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 890, which is longer than the specified 0\n", "Created a chunk of size 210, which is longer than the specified 0\n", "Created a chunk of size 361, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 560, which is longer than the specified 0\n", "Created a chunk of size 2085, which is longer than the specified 0\n", "Created a chunk of size 1897, which is longer than the specified 0\n", "Created a chunk of size 439, which is longer than the specified 0\n", "Created a chunk of size 669, which is longer than the specified 0\n", "Created a chunk of size 875, which is longer than the specified 0\n", "Created a chunk of size 2018, which is longer than the specified 0\n", "Created a chunk of size 764, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 880, which is longer than the specified 0\n", "Created a chunk of size 1096, which is longer than the specified 0\n", "Created a chunk of size 1132, which is longer than the specified 0\n", "Created a chunk of size 415, which is longer than the specified 0\n", "Created a chunk of size 428, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 367, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 261, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 345, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 435, which is longer than the specified 0\n", "Created a chunk of size 379, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 266, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 270, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 368, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 279, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 369, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 444, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 336, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 392, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 388, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 952, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 311, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 435, which is longer than the specified 0\n", "Created a chunk of size 360, which is longer than the specified 0\n", "Created a chunk of size 397, which is longer than the specified 0\n", "Created a chunk of size 335, which is longer than the specified 0\n", "Created a chunk of size 405, which is longer than the specified 0\n", "Created a chunk of size 435, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 286, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 331, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 368, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 388, which is longer than the specified 0\n", "Created a chunk of size 267, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 376, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 165, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 403, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 386, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 474, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 601, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 375, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 844, which is longer than the specified 0\n", "Created a chunk of size 1933, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 337, which is longer than the specified 0\n", "Created a chunk of size 323, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 999, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 157, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 155, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 1365, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 1751, which is longer than the specified 0\n", "Created a chunk of size 631, which is longer than the specified 0\n", "Created a chunk of size 1025, which is longer than the specified 0\n", "Created a chunk of size 973, which is longer than the specified 0\n", "Created a chunk of size 584, which is longer than the specified 0\n", "Created a chunk of size 707, which is longer than the specified 0\n", "Created a chunk of size 838, which is longer than the specified 0\n", "Created a chunk of size 892, which is longer than the specified 0\n", "Created a chunk of size 509, which is longer than the specified 0\n", "Created a chunk of size 916, which is longer than the specified 0\n", "Created a chunk of size 935, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 428, which is longer than the specified 0\n", "Created a chunk of size 507, which is longer than the specified 0\n", "Created a chunk of size 439, which is longer than the specified 0\n", "Created a chunk of size 439, which is longer than the specified 0\n", "Created a chunk of size 439, which is longer than the specified 0\n", "Created a chunk of size 439, which is longer than the specified 0\n", "Created a chunk of size 439, which is longer than the specified 0\n", "Created a chunk of size 439, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 476, which is longer than the specified 0\n", "Created a chunk of size 968, which is longer than the specified 0\n", "Created a chunk of size 674, which is longer than the specified 0\n", "Created a chunk of size 2713, which is longer than the specified 0\n", "Created a chunk of size 2278, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 436, which is longer than the specified 0\n", "Created a chunk of size 436, which is longer than the specified 0\n", "Created a chunk of size 1204, which is longer than the specified 0\n", "Created a chunk of size 879, which is longer than the specified 0\n", "Created a chunk of size 1123, which is longer than the specified 0\n", "Created a chunk of size 381, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 166, which is longer than the specified 0\n", "Created a chunk of size 510, which is longer than the specified 0\n", "Created a chunk of size 377, which is longer than the specified 0\n", "Created a chunk of size 1435, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 388, which is longer than the specified 0\n", "Created a chunk of size 1055, which is longer than the specified 0\n", "Created a chunk of size 1340, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 1006, which is longer than the specified 0\n", "Created a chunk of size 883, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 693, which is longer than the specified 0\n", "Created a chunk of size 293, which is longer than the specified 0\n", "Created a chunk of size 610, which is longer than the specified 0\n", "Created a chunk of size 199, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 960, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 734, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 609, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 891, which is longer than the specified 0\n", "Created a chunk of size 1137, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 2051, which is longer than the specified 0\n", "Created a chunk of size 641, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 539, which is longer than the specified 0\n", "Created a chunk of size 1305, which is longer than the specified 0\n", "Created a chunk of size 2014, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 726, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 633, which is longer than the specified 0\n", "Created a chunk of size 580, which is longer than the specified 0\n", "Created a chunk of size 928, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 617, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 569, which is longer than the specified 0\n", "Created a chunk of size 599, which is longer than the specified 0\n", "Created a chunk of size 352, which is longer than the specified 0\n", "Created a chunk of size 354, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 452, which is longer than the specified 0\n", "Created a chunk of size 768, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 1045, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 298, which is longer than the specified 0\n", "Created a chunk of size 355, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 362, which is longer than the specified 0\n", "Created a chunk of size 253, which is longer than the specified 0\n", "Created a chunk of size 364, which is longer than the specified 0\n", "Created a chunk of size 702, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 842, which is longer than the specified 0\n", "Created a chunk of size 462, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 1002, which is longer than the specified 0\n", "Created a chunk of size 1273, which is longer than the specified 0\n", "Created a chunk of size 865, which is longer than the specified 0\n", "Created a chunk of size 906, which is longer than the specified 0\n", "Created a chunk of size 924, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 360, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 290, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 675, which is longer than the specified 0\n", "Created a chunk of size 834, which is longer than the specified 0\n", "Created a chunk of size 901, which is longer than the specified 0\n", "Created a chunk of size 544, which is longer than the specified 0\n", "Created a chunk of size 300, which is longer than the specified 0\n", "Created a chunk of size 414, which is longer than the specified 0\n", "Created a chunk of size 249, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 539, which is longer than the specified 0\n", "Created a chunk of size 714, which is longer than the specified 0\n", "Created a chunk of size 398, which is longer than the specified 0\n", "Created a chunk of size 190, which is longer than the specified 0\n", "Created a chunk of size 1360, which is longer than the specified 0\n", "Created a chunk of size 1731, which is longer than the specified 0\n", "Created a chunk of size 730, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 1054, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 468, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 2067, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 1326, which is longer than the specified 0\n", "Created a chunk of size 814, which is longer than the specified 0\n", "Created a chunk of size 292, which is longer than the specified 0\n", "Created a chunk of size 1030, which is longer than the specified 0\n", "Created a chunk of size 1127, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 194, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 164, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 456, which is longer than the specified 0\n", "Created a chunk of size 178, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 594, which is longer than the specified 0\n", "Created a chunk of size 226, which is longer than the specified 0\n", "Created a chunk of size 637, which is longer than the specified 0\n", "Created a chunk of size 473, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 615, which is longer than the specified 0\n", "Created a chunk of size 370, which is longer than the specified 0\n", "Created a chunk of size 175, which is longer than the specified 0\n", "Created a chunk of size 723, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 420, which is longer than the specified 0\n", "Created a chunk of size 976, which is longer than the specified 0\n", "Created a chunk of size 1165, which is longer than the specified 0\n", "Created a chunk of size 1352, which is longer than the specified 0\n", "Created a chunk of size 1180, which is longer than the specified 0\n", "Created a chunk of size 693, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 691, which is longer than the specified 0\n", "Created a chunk of size 399, which is longer than the specified 0\n", "Created a chunk of size 652, which is longer than the specified 0\n", "Created a chunk of size 1012, which is longer than the specified 0\n", "Created a chunk of size 1055, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 1169, which is longer than the specified 0\n", "Created a chunk of size 320, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 938, which is longer than the specified 0\n", "Created a chunk of size 259, which is longer than the specified 0\n", "Created a chunk of size 185, which is longer than the specified 0\n", "Created a chunk of size 654, which is longer than the specified 0\n", "Created a chunk of size 520, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 815, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 872, which is longer than the specified 0\n", "Created a chunk of size 1079, which is longer than the specified 0\n", "Created a chunk of size 454, which is longer than the specified 0\n", "Created a chunk of size 312, which is longer than the specified 0\n", "Created a chunk of size 1903, which is longer than the specified 0\n", "Created a chunk of size 988, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 1310, which is longer than the specified 0\n", "Created a chunk of size 429, which is longer than the specified 0\n", "Created a chunk of size 963, which is longer than the specified 0\n", "Created a chunk of size 217, which is longer than the specified 0\n", "Created a chunk of size 421, which is longer than the specified 0\n", "Created a chunk of size 438, which is longer than the specified 0\n", "Created a chunk of size 364, which is longer than the specified 0\n", "Created a chunk of size 626, which is longer than the specified 0\n", "Created a chunk of size 616, which is longer than the specified 0\n", "Created a chunk of size 1621, which is longer than the specified 0\n", "Created a chunk of size 366, which is longer than the specified 0\n", "Created a chunk of size 458, which is longer than the specified 0\n", "Created a chunk of size 993, which is longer than the specified 0\n", "Created a chunk of size 871, which is longer than the specified 0\n", "Created a chunk of size 1163, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 402, which is longer than the specified 0\n", "Created a chunk of size 574, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 401, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 585, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 218, which is longer than the specified 0\n", "Created a chunk of size 418, which is longer than the specified 0\n", "Created a chunk of size 969, which is longer than the specified 0\n", "Created a chunk of size 986, which is longer than the specified 0\n", "Created a chunk of size 1283, which is longer than the specified 0\n", "Created a chunk of size 619, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 340, which is longer than the specified 0\n", "Created a chunk of size 438, which is longer than the specified 0\n", "Created a chunk of size 532, which is longer than the specified 0\n", "Created a chunk of size 334, which is longer than the specified 0\n", "Created a chunk of size 1475, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 606, which is longer than the specified 0\n", "Created a chunk of size 556, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 240, which is longer than the specified 0\n", "Created a chunk of size 272, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 564, which is longer than the specified 0\n", "Created a chunk of size 568, which is longer than the specified 0\n", "Created a chunk of size 364, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 256, which is longer than the specified 0\n", "Created a chunk of size 214, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 277, which is longer than the specified 0\n", "Created a chunk of size 1144, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 485, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 162, which is longer than the specified 0\n", "Created a chunk of size 460, which is longer than the specified 0\n", "Created a chunk of size 380, which is longer than the specified 0\n", "Created a chunk of size 1772, which is longer than the specified 0\n", "Created a chunk of size 1502, which is longer than the specified 0\n", "Created a chunk of size 345, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 562, which is longer than the specified 0\n", "Created a chunk of size 443, which is longer than the specified 0\n", "Created a chunk of size 358, which is longer than the specified 0\n", "Created a chunk of size 421, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 416, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 197, which is longer than the specified 0\n", "Created a chunk of size 252, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 1544, which is longer than the specified 0\n", "Created a chunk of size 202, which is longer than the specified 0\n", "Created a chunk of size 2855, which is longer than the specified 0\n", "Created a chunk of size 600, which is longer than the specified 0\n", "Created a chunk of size 566, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 711, which is longer than the specified 0\n", "Created a chunk of size 418, which is longer than the specified 0\n", "Created a chunk of size 1090, which is longer than the specified 0\n", "Created a chunk of size 963, which is longer than the specified 0\n", "Created a chunk of size 1132, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 225, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 762, which is longer than the specified 0\n", "Created a chunk of size 1197, which is longer than the specified 0\n", "Created a chunk of size 173, which is longer than the specified 0\n", "Created a chunk of size 1172, which is longer than the specified 0\n", "Created a chunk of size 961, which is longer than the specified 0\n", "Created a chunk of size 1214, which is longer than the specified 0\n", "Created a chunk of size 357, which is longer than the specified 0\n", "Created a chunk of size 966, which is longer than the specified 0\n", "Created a chunk of size 881, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 366, which is longer than the specified 0\n", "Created a chunk of size 355, which is longer than the specified 0\n", "Created a chunk of size 230, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 276, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 1002, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 404, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 1472, which is longer than the specified 0\n", "Created a chunk of size 1471, which is longer than the specified 0\n", "Created a chunk of size 247, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 301, which is longer than the specified 0\n", "Created a chunk of size 285, which is longer than the specified 0\n", "Created a chunk of size 303, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 885, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 309, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 520, which is longer than the specified 0\n", "Created a chunk of size 499, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 1215, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 318, which is longer than the specified 0\n", "Created a chunk of size 161, which is longer than the specified 0\n", "Created a chunk of size 223, which is longer than the specified 0\n", "Created a chunk of size 222, which is longer than the specified 0\n", "Created a chunk of size 943, which is longer than the specified 0\n", "Created a chunk of size 237, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 176, which is longer than the specified 0\n", "Created a chunk of size 1862, which is longer than the specified 0\n", "Created a chunk of size 422, which is longer than the specified 0\n", "Created a chunk of size 254, which is longer than the specified 0\n", "Created a chunk of size 1525, which is longer than the specified 0\n", "Created a chunk of size 260, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 198, which is longer than the specified 0\n", "Created a chunk of size 1016, which is longer than the specified 0\n", "Created a chunk of size 1385, which is longer than the specified 0\n", "Created a chunk of size 434, which is longer than the specified 0\n", "Created a chunk of size 284, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 359, which is longer than the specified 0\n", "Created a chunk of size 1452, which is longer than the specified 0\n", "Created a chunk of size 179, which is longer than the specified 0\n", "Created a chunk of size 1165, which is longer than the specified 0\n", "Created a chunk of size 927, which is longer than the specified 0\n", "Created a chunk of size 233, which is longer than the specified 0\n", "Created a chunk of size 881, which is longer than the specified 0\n", "Created a chunk of size 499, which is longer than the specified 0\n", "Created a chunk of size 813, which is longer than the specified 0\n", "Created a chunk of size 945, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 1003, which is longer than the specified 0\n", "Created a chunk of size 1360, which is longer than the specified 0\n", "Created a chunk of size 923, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 213, which is longer than the specified 0\n", "Created a chunk of size 1341, which is longer than the specified 0\n", "Created a chunk of size 834, which is longer than the specified 0\n", "Created a chunk of size 530, which is longer than the specified 0\n", "Created a chunk of size 1050, which is longer than the specified 0\n", "Created a chunk of size 570, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 187, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 168, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 1338, which is longer than the specified 0\n", "Created a chunk of size 496, which is longer than the specified 0\n", "Created a chunk of size 313, which is longer than the specified 0\n", "Created a chunk of size 1601, which is longer than the specified 0\n", "Created a chunk of size 1057, which is longer than the specified 0\n", "Created a chunk of size 142, which is longer than the specified 0\n", "Created a chunk of size 351, which is longer than the specified 0\n", "Created a chunk of size 1267, which is longer than the specified 0\n", "Created a chunk of size 201, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 404, which is longer than the specified 0\n", "Created a chunk of size 204, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 769, which is longer than the specified 0\n", "Created a chunk of size 1026, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 527, which is longer than the specified 0\n", "Created a chunk of size 305, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 726, which is longer than the specified 0\n", "Created a chunk of size 675, which is longer than the specified 0\n", "Created a chunk of size 823, which is longer than the specified 0\n", "Created a chunk of size 383, which is longer than the specified 0\n", "Created a chunk of size 831, which is longer than the specified 0\n", "Created a chunk of size 572, which is longer than the specified 0\n", "Created a chunk of size 1036, which is longer than the specified 0\n", "Created a chunk of size 740, which is longer than the specified 0\n", "Created a chunk of size 573, which is longer than the specified 0\n", "Created a chunk of size 897, which is longer than the specified 0\n", "Created a chunk of size 1432, which is longer than the specified 0\n", "Created a chunk of size 873, which is longer than the specified 0\n", "Created a chunk of size 2869, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 242, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 211, which is longer than the specified 0\n", "Created a chunk of size 2347, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 180, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 528, which is longer than the specified 0\n", "Created a chunk of size 2451, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 192, which is longer than the specified 0\n", "Created a chunk of size 901, which is longer than the specified 0\n", "Created a chunk of size 375, which is longer than the specified 0\n", "Created a chunk of size 756, which is longer than the specified 0\n", "Created a chunk of size 393, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 322, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 196, which is longer than the specified 0\n", "Created a chunk of size 357, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 248, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 1054, which is longer than the specified 0\n", "Created a chunk of size 366, which is longer than the specified 0\n", "Created a chunk of size 1510, which is longer than the specified 0\n", "Created a chunk of size 921, which is longer than the specified 0\n", "Created a chunk of size 1113, which is longer than the specified 0\n", "Created a chunk of size 1109, which is longer than the specified 0\n", "Created a chunk of size 770, which is longer than the specified 0\n", "Created a chunk of size 738, which is longer than the specified 0\n", "Created a chunk of size 258, which is longer than the specified 0\n", "Created a chunk of size 922, which is longer than the specified 0\n", "Created a chunk of size 721, which is longer than the specified 0\n", "Created a chunk of size 926, which is longer than the specified 0\n", "Created a chunk of size 630, which is longer than the specified 0\n", "Created a chunk of size 400, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 239, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 1512, which is longer than the specified 0\n", "Created a chunk of size 212, which is longer than the specified 0\n", "Created a chunk of size 216, which is longer than the specified 0\n", "Created a chunk of size 271, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 257, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 1300, which is longer than the specified 0\n", "Created a chunk of size 229, which is longer than the specified 0\n", "Created a chunk of size 601, which is longer than the specified 0\n", "Created a chunk of size 374, which is longer than the specified 0\n", "Created a chunk of size 797, which is longer than the specified 0\n", "Created a chunk of size 431, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 431, which is longer than the specified 0\n", "Created a chunk of size 255, which is longer than the specified 0\n", "Created a chunk of size 839, which is longer than the specified 0\n", "Created a chunk of size 431, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 188, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 369, which is longer than the specified 0\n", "Created a chunk of size 186, which is longer than the specified 0\n", "Created a chunk of size 314, which is longer than the specified 0\n", "Created a chunk of size 797, which is longer than the specified 0\n", "Created a chunk of size 1134, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 508, which is longer than the specified 0\n", "Created a chunk of size 236, which is longer than the specified 0\n", "Created a chunk of size 288, which is longer than the specified 0\n", "Created a chunk of size 1348, which is longer than the specified 0\n", "Created a chunk of size 680, which is longer than the specified 0\n", "Created a chunk of size 579, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 954, which is longer than the specified 0\n", "Created a chunk of size 274, which is longer than the specified 0\n", "Created a chunk of size 683, which is longer than the specified 0\n", "Created a chunk of size 727, which is longer than the specified 0\n", "Created a chunk of size 656, which is longer than the specified 0\n", "Created a chunk of size 1084, which is longer than the specified 0\n", "Created a chunk of size 794, which is longer than the specified 0\n", "Created a chunk of size 798, which is longer than the specified 0\n", "Created a chunk of size 998, which is longer than the specified 0\n", "Created a chunk of size 960, which is longer than the specified 0\n", "Created a chunk of size 659, which is longer than the specified 0\n", "Created a chunk of size 231, which is longer than the specified 0\n", "Created a chunk of size 756, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 509, which is longer than the specified 0\n", "Created a chunk of size 560, which is longer than the specified 0\n", "Created a chunk of size 241, which is longer than the specified 0\n", "Created a chunk of size 220, which is longer than the specified 0\n", "Created a chunk of size 502, which is longer than the specified 0\n", "Created a chunk of size 184, which is longer than the specified 0\n", "Created a chunk of size 206, which is longer than the specified 0\n", "Created a chunk of size 341, which is longer than the specified 0\n", "Created a chunk of size 269, which is longer than the specified 0\n", "Created a chunk of size 203, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 250, which is longer than the specified 0\n", "Created a chunk of size 670, which is longer than the specified 0\n", "Created a chunk of size 246, which is longer than the specified 0\n", "Created a chunk of size 670, which is longer than the specified 0\n", "Created a chunk of size 675, which is longer than the specified 0\n", "Created a chunk of size 174, which is longer than the specified 0\n", "Created a chunk of size 265, which is longer than the specified 0\n", "Created a chunk of size 856, which is longer than the specified 0\n", "Created a chunk of size 1108, which is longer than the specified 0\n", "Created a chunk of size 540, which is longer than the specified 0\n", "Created a chunk of size 232, which is longer than the specified 0\n", "Created a chunk of size 451, which is longer than the specified 0\n", "Created a chunk of size 981, which is longer than the specified 0\n", "Created a chunk of size 264, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 1340, which is longer than the specified 0\n", "Created a chunk of size 163, which is longer than the specified 0\n", "Created a chunk of size 289, which is longer than the specified 0\n", "Created a chunk of size 761, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 419, which is longer than the specified 0\n", "Created a chunk of size 438, which is longer than the specified 0\n", "Created a chunk of size 200, which is longer than the specified 0\n", "Created a chunk of size 1298, which is longer than the specified 0\n", "Created a chunk of size 720, which is longer than the specified 0\n", "Created a chunk of size 235, which is longer than the specified 0\n", "Created a chunk of size 370, which is longer than the specified 0\n", "Created a chunk of size 1320, which is longer than the specified 0\n", "Created a chunk of size 1524, which is longer than the specified 0\n", "Created a chunk of size 1031, which is longer than the specified 0\n", "Created a chunk of size 705, which is longer than the specified 0\n", "Created a chunk of size 1255, which is longer than the specified 0\n", "Created a chunk of size 710, which is longer than the specified 0\n", "Created a chunk of size 1125, which is longer than the specified 0\n", "Created a chunk of size 181, which is longer than the specified 0\n", "Created a chunk of size 1293, which is longer than the specified 0\n", "Created a chunk of size 397, which is longer than the specified 0\n", "Created a chunk of size 238, which is longer than the specified 0\n", "Created a chunk of size 1041, which is longer than the specified 0\n", "Created a chunk of size 353, which is longer than the specified 0\n", "Created a chunk of size 500, which is longer than the specified 0\n", "Created a chunk of size 1150, which is longer than the specified 0\n", "Created a chunk of size 933, which is longer than the specified 0\n", "Created a chunk of size 661, which is longer than the specified 0\n", "Created a chunk of size 880, which is longer than the specified 0\n", "Created a chunk of size 888, which is longer than the specified 0\n", "Created a chunk of size 296, which is longer than the specified 0\n", "Created a chunk of size 570, which is longer than the specified 0\n", "Created a chunk of size 893, which is longer than the specified 0\n", "Created a chunk of size 528, which is longer than the specified 0\n", "Created a chunk of size 554, which is longer than the specified 0\n", "Created a chunk of size 909, which is longer than the specified 0\n", "Created a chunk of size 963, which is longer than the specified 0\n", "Created a chunk of size 868, which is longer than the specified 0\n", "Created a chunk of size 529, which is longer than the specified 0\n", "Created a chunk of size 406, which is longer than the specified 0\n", "Created a chunk of size 631, which is longer than the specified 0\n", "Created a chunk of size 349, which is longer than the specified 0\n", "Created a chunk of size 483, which is longer than the specified 0\n", "Created a chunk of size 510, which is longer than the specified 0\n", "Created a chunk of size 473, which is longer than the specified 0\n", "Created a chunk of size 343, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 649, which is longer than the specified 0\n", "Created a chunk of size 243, which is longer than the specified 0\n", "Created a chunk of size 461, which is longer than the specified 0\n", "Created a chunk of size 227, which is longer than the specified 0\n", "Created a chunk of size 209, which is longer than the specified 0\n", "Created a chunk of size 905, which is longer than the specified 0\n", "Created a chunk of size 294, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 304, which is longer than the specified 0\n", "Created a chunk of size 604, which is longer than the specified 0\n", "Created a chunk of size 565, which is longer than the specified 0\n", "Created a chunk of size 667, which is longer than the specified 0\n", "Created a chunk of size 525, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 1155, which is longer than the specified 0\n", "Created a chunk of size 1350, which is longer than the specified 0\n", "Created a chunk of size 1403, which is longer than the specified 0\n", "Created a chunk of size 975, which is longer than the specified 0\n", "Created a chunk of size 411, which is longer than the specified 0\n", "Created a chunk of size 413, which is longer than the specified 0\n", "Created a chunk of size 282, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 580, which is longer than the specified 0\n", "Created a chunk of size 368, which is longer than the specified 0\n", "Created a chunk of size 637, which is longer than the specified 0\n", "Created a chunk of size 1898, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 385, which is longer than the specified 0\n", "Created a chunk of size 2149, which is longer than the specified 0\n", "Created a chunk of size 344, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 205, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 1417, which is longer than the specified 0\n", "Created a chunk of size 586, which is longer than the specified 0\n", "Created a chunk of size 973, which is longer than the specified 0\n", "Created a chunk of size 1419, which is longer than the specified 0\n", "Created a chunk of size 302, which is longer than the specified 0\n", "Created a chunk of size 170, which is longer than the specified 0\n", "Created a chunk of size 840, which is longer than the specified 0\n", "Created a chunk of size 1387, which is longer than the specified 0\n", "Created a chunk of size 486, which is longer than the specified 0\n", "Created a chunk of size 507, which is longer than the specified 0\n", "Created a chunk of size 1280, which is longer than the specified 0\n", "Created a chunk of size 1287, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 677, which is longer than the specified 0\n", "Created a chunk of size 465, which is longer than the specified 0\n", "Created a chunk of size 799, which is longer than the specified 0\n", "Created a chunk of size 1043, which is longer than the specified 0\n", "Created a chunk of size 416, which is longer than the specified 0\n", "Created a chunk of size 2742, which is longer than the specified 0\n", "Created a chunk of size 325, which is longer than the specified 0\n", "Created a chunk of size 866, which is longer than the specified 0\n", "Created a chunk of size 603, which is longer than the specified 0\n", "Created a chunk of size 404, which is longer than the specified 0\n", "Created a chunk of size 1182, which is longer than the specified 0\n", "Created a chunk of size 317, which is longer than the specified 0\n", "Created a chunk of size 654, which is longer than the specified 0\n", "Created a chunk of size 378, which is longer than the specified 0\n", "Created a chunk of size 1000, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 215, which is longer than the specified 0\n", "Created a chunk of size 295, which is longer than the specified 0\n", "Created a chunk of size 312, which is longer than the specified 0\n", "Created a chunk of size 796, which is longer than the specified 0\n", "Created a chunk of size 3938, which is longer than the specified 0\n", "Created a chunk of size 923, which is longer than the specified 0\n", "Created a chunk of size 695, which is longer than the specified 0\n", "Created a chunk of size 853, which is longer than the specified 0\n", "Created a chunk of size 928, which is longer than the specified 0\n", "Created a chunk of size 548, which is longer than the specified 0\n", "Created a chunk of size 1019, which is longer than the specified 0\n", "Created a chunk of size 395, which is longer than the specified 0\n", "Created a chunk of size 306, which is longer than the specified 0\n", "Created a chunk of size 262, which is longer than the specified 0\n", "Created a chunk of size 398, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 1108, which is longer than the specified 0\n", "Created a chunk of size 330, which is longer than the specified 0\n", "Created a chunk of size 244, which is longer than the specified 0\n", "Created a chunk of size 191, which is longer than the specified 0\n", "Created a chunk of size 365, which is longer than the specified 0\n", "Created a chunk of size 440, which is longer than the specified 0\n", "Created a chunk of size 1273, which is longer than the specified 0\n", "Created a chunk of size 299, which is longer than the specified 0\n", "Created a chunk of size 346, which is longer than the specified 0\n", "Created a chunk of size 1964, which is longer than the specified 0\n", "Created a chunk of size 540, which is longer than the specified 0\n", "Created a chunk of size 1529, which is longer than the specified 0\n", "Created a chunk of size 315, which is longer than the specified 0\n", "Created a chunk of size 342, which is longer than the specified 0\n", "Created a chunk of size 332, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 275, which is longer than the specified 0\n", "Created a chunk of size 189, which is longer than the specified 0\n", "Created a chunk of size 207, which is longer than the specified 0\n", "Created a chunk of size 375, which is longer than the specified 0\n", "Created a chunk of size 208, which is longer than the specified 0\n", "Created a chunk of size 273, which is longer than the specified 0\n", "Created a chunk of size 442, which is longer than the specified 0\n", "Created a chunk of size 183, which is longer than the specified 0\n", "Created a chunk of size 438, which is longer than the specified 0\n", "Created a chunk of size 167, which is longer than the specified 0\n", "Created a chunk of size 612, which is longer than the specified 0\n", "Created a chunk of size 268, which is longer than the specified 0\n", "Created a chunk of size 1302, which is longer than the specified 0\n", "Created a chunk of size 182, which is longer than the specified 0\n", "Created a chunk of size 292, which is longer than the specified 0\n", "Created a chunk of size 328, which is longer than the specified 0\n", "Created a chunk of size 519, which is longer than the specified 0\n", "Created a chunk of size 283, which is longer than the specified 0\n", "Created a chunk of size 999, which is longer than the specified 0\n", "Created a chunk of size 767, which is longer than the specified 0\n", "Created a chunk of size 291, which is longer than the specified 0\n", "Created a chunk of size 234, which is longer than the specified 0\n", "Created a chunk of size 561, which is longer than the specified 0\n", "Created a chunk of size 651, which is longer than the specified 0\n", "Created a chunk of size 224, which is longer than the specified 0\n", "Created a chunk of size 1048, which is longer than the specified 0\n", "Created a chunk of size 1272, which is longer than the specified 0\n", "Created a chunk of size 950, which is longer than the specified 0\n", "Created a chunk of size 451, which is longer than the specified 0\n", "Created a chunk of size 384, which is longer than the specified 0\n", "Created a chunk of size 682, which is longer than the specified 0\n", "Created a chunk of size 348, which is longer than the specified 0\n", "Created a chunk of size 584, which is longer than the specified 0\n", "Created a chunk of size 251, which is longer than the specified 0\n", "Created a chunk of size 195, which is longer than the specified 0\n", "Created a chunk of size 315, which is longer than the specified 0\n", "Created a chunk of size 308, which is longer than the specified 0\n", "Created a chunk of size 1655, which is longer than the specified 0\n", "Created a chunk of size 387, which is longer than the specified 0\n", "Created a chunk of size 763, which is longer than the specified 0\n", "Created a chunk of size 1032, which is longer than the specified 0\n" ] } ], "source": [ "from langchain_community.document_loaders import TextLoader\n", "\n", "# Use UTF-8 encoding explicitly\n", "raw_documents = TextLoader(\"tagged_description.txt\", encoding=\"utf-8\").load()\n", "\n", "text_splitter = CharacterTextSplitter(chunk_size=0, chunk_overlap=0, separator=\"\\n\")\n", "documents = text_splitter.split_documents(raw_documents)\n" ] }, { "cell_type": "code", "execution_count": 8, "id": "9f880405-e5e3-47a8-aa66-753255570911", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Document(metadata={'source': 'tagged_description.txt'}, page_content='9780002005883 A NOVEL THAT READERS and critics have been eagerly anticipating for over a decade, Gilead is an astonishingly imagined story of remarkable lives. John Ames is a preacher, the son of a preacher and the grandson (both maternal and paternal) of preachers. It’s 1956 in Gilead, Iowa, towards the end of the Reverend Ames’s life, and he is absorbed in recording his family’s story, a legacy for the young son he will never see grow up. Haunted by his grandfather’s presence, John tells of the rift between his grandfather and his father: the elder, an angry visionary who fought for the abolitionist cause, and his son, an ardent pacifist. He is troubled, too, by his prodigal namesake, Jack (John Ames) Boughton, his best friend’s lost son who returns to Gilead searching for forgiveness and redemption. Told in John Ames’s joyous, rambling voice that finds beauty, humour and truth in the smallest of life’s details, Gilead is a song of celebration and acceptance of the best and the worst the world has to offer. At its heart is a tale of the sacred bonds between fathers and sons, pitch-perfect in style and story, set to dazzle critics and readers alike.')" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "documents[0]" ] }, { "cell_type": "code", "execution_count": 9, "id": "9b630abe-b095-47ce-b7fb-74e9e89935b9", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Requirement already satisfied: sentence-transformers in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (4.1.0)\n", "Requirement already satisfied: transformers<5.0.0,>=4.41.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (4.52.1)\n", "Requirement already satisfied: tqdm in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (4.67.1)\n", "Requirement already satisfied: torch>=1.11.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (2.7.0)\n", "Requirement already satisfied: scikit-learn in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (1.6.1)\n", "Requirement already satisfied: scipy in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (1.15.2)\n", "Requirement already satisfied: huggingface-hub>=0.20.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (0.31.4)\n", "Requirement already satisfied: Pillow in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (11.2.1)\n", "Requirement already satisfied: typing_extensions>=4.5.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers) (4.12.2)\n", "Requirement already satisfied: filelock in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.20.0->sentence-transformers) (3.18.0)\n", "Requirement already satisfied: fsspec>=2023.5.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.20.0->sentence-transformers) (2025.5.0)\n", "Requirement already satisfied: packaging>=20.9 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.20.0->sentence-transformers) (24.2)\n", "Requirement already satisfied: pyyaml>=5.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.20.0->sentence-transformers) (6.0.2)\n", "Requirement already satisfied: requests in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.20.0->sentence-transformers) (2.32.3)\n", "Requirement already satisfied: sympy>=1.13.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from torch>=1.11.0->sentence-transformers) (1.14.0)\n", "Requirement already satisfied: networkx in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from torch>=1.11.0->sentence-transformers) (3.4.2)\n", "Requirement already satisfied: jinja2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from torch>=1.11.0->sentence-transformers) (3.1.5)\n", "Requirement already satisfied: colorama in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from tqdm->sentence-transformers) (0.4.6)\n", "Requirement already satisfied: numpy>=1.17 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from transformers<5.0.0,>=4.41.0->sentence-transformers) (2.2.5)\n", "Requirement already satisfied: regex!=2019.12.17 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from transformers<5.0.0,>=4.41.0->sentence-transformers) (2024.11.6)\n", "Requirement already satisfied: tokenizers<0.22,>=0.21 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from transformers<5.0.0,>=4.41.0->sentence-transformers) (0.21.1)\n", "Requirement already satisfied: safetensors>=0.4.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from transformers<5.0.0,>=4.41.0->sentence-transformers) (0.5.3)\n", "Requirement already satisfied: joblib>=1.2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from scikit-learn->sentence-transformers) (1.5.0)\n", "Requirement already satisfied: threadpoolctl>=3.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from scikit-learn->sentence-transformers) (3.5.0)\n", "Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sympy>=1.13.3->torch>=1.11.0->sentence-transformers) (1.3.0)\n", "Requirement already satisfied: MarkupSafe>=2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from jinja2->torch>=1.11.0->sentence-transformers) (2.1.5)\n", "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.20.0->sentence-transformers) (3.4.1)\n", "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.20.0->sentence-transformers) (3.10)\n", "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.20.0->sentence-transformers) (2.3.0)\n", "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.20.0->sentence-transformers) (2024.12.14)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "\n", "[notice] A new release of pip is available: 25.0 -> 25.1.1\n", "[notice] To update, run: C:\\Users\\acer\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe -m pip install --upgrade pip\n" ] } ], "source": [ "!pip install sentence-transformers" ] }, { "cell_type": "code", "execution_count": 10, "id": "dc128c46-6fb5-4f6f-b3df-27d8c627600b", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Requirement already satisfied: langchain-huggingface in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (0.2.0)\n", "Requirement already satisfied: langchain-core<1.0.0,>=0.3.59 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-huggingface) (0.3.60)\n", "Requirement already satisfied: tokenizers>=0.19.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-huggingface) (0.21.1)\n", "Requirement already satisfied: transformers>=4.39.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-huggingface) (4.52.1)\n", "Requirement already satisfied: sentence-transformers>=2.6.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-huggingface) (4.1.0)\n", "Requirement already satisfied: huggingface-hub>=0.30.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-huggingface) (0.31.4)\n", "Requirement already satisfied: filelock in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.30.2->langchain-huggingface) (3.18.0)\n", "Requirement already satisfied: fsspec>=2023.5.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.30.2->langchain-huggingface) (2025.5.0)\n", "Requirement already satisfied: packaging>=20.9 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.30.2->langchain-huggingface) (24.2)\n", "Requirement already satisfied: pyyaml>=5.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.30.2->langchain-huggingface) (6.0.2)\n", "Requirement already satisfied: requests in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.30.2->langchain-huggingface) (2.32.3)\n", "Requirement already satisfied: tqdm>=4.42.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.30.2->langchain-huggingface) (4.67.1)\n", "Requirement already satisfied: typing-extensions>=3.7.4.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub>=0.30.2->langchain-huggingface) (4.12.2)\n", "Requirement already satisfied: langsmith<0.4,>=0.1.126 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (0.3.42)\n", "Requirement already satisfied: tenacity!=8.4.0,<10.0.0,>=8.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (9.0.0)\n", "Requirement already satisfied: jsonpatch<2.0,>=1.33 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (1.33)\n", "Requirement already satisfied: pydantic>=2.7.4 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (2.10.6)\n", "Requirement already satisfied: torch>=1.11.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers>=2.6.0->langchain-huggingface) (2.7.0)\n", "Requirement already satisfied: scikit-learn in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers>=2.6.0->langchain-huggingface) (1.6.1)\n", "Requirement already satisfied: scipy in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers>=2.6.0->langchain-huggingface) (1.15.2)\n", "Requirement already satisfied: Pillow in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sentence-transformers>=2.6.0->langchain-huggingface) (11.2.1)\n", "Requirement already satisfied: numpy>=1.17 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from transformers>=4.39.0->langchain-huggingface) (2.2.5)\n", "Requirement already satisfied: regex!=2019.12.17 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from transformers>=4.39.0->langchain-huggingface) (2024.11.6)\n", "Requirement already satisfied: safetensors>=0.4.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from transformers>=4.39.0->langchain-huggingface) (0.5.3)\n", "Requirement already satisfied: jsonpointer>=1.9 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from jsonpatch<2.0,>=1.33->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (3.0.0)\n", "Requirement already satisfied: httpx<1,>=0.23.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (0.28.1)\n", "Requirement already satisfied: orjson<4.0.0,>=3.9.14 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (3.10.18)\n", "Requirement already satisfied: requests-toolbelt<2.0.0,>=1.0.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (1.0.0)\n", "Requirement already satisfied: zstandard<0.24.0,>=0.23.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (0.23.0)\n", "Requirement already satisfied: annotated-types>=0.6.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from pydantic>=2.7.4->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (0.7.0)\n", "Requirement already satisfied: pydantic-core==2.27.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from pydantic>=2.7.4->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (2.27.2)\n", "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.30.2->langchain-huggingface) (3.4.1)\n", "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.30.2->langchain-huggingface) (3.10)\n", "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.30.2->langchain-huggingface) (2.3.0)\n", "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests->huggingface-hub>=0.30.2->langchain-huggingface) (2024.12.14)\n", "Requirement already satisfied: sympy>=1.13.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from torch>=1.11.0->sentence-transformers>=2.6.0->langchain-huggingface) (1.14.0)\n", "Requirement already satisfied: networkx in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from torch>=1.11.0->sentence-transformers>=2.6.0->langchain-huggingface) (3.4.2)\n", "Requirement already satisfied: jinja2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from torch>=1.11.0->sentence-transformers>=2.6.0->langchain-huggingface) (3.1.5)\n", "Requirement already satisfied: colorama in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from tqdm>=4.42.1->huggingface-hub>=0.30.2->langchain-huggingface) (0.4.6)\n", "Requirement already satisfied: joblib>=1.2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from scikit-learn->sentence-transformers>=2.6.0->langchain-huggingface) (1.5.0)\n", "Requirement already satisfied: threadpoolctl>=3.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from scikit-learn->sentence-transformers>=2.6.0->langchain-huggingface) (3.5.0)\n", "Requirement already satisfied: anyio in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (4.8.0)\n", "Requirement already satisfied: httpcore==1.* in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpx<1,>=0.23.0->langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (1.0.7)\n", "Requirement already satisfied: h11<0.15,>=0.13 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpcore==1.*->httpx<1,>=0.23.0->langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (0.14.0)\n", "Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sympy>=1.13.3->torch>=1.11.0->sentence-transformers>=2.6.0->langchain-huggingface) (1.3.0)\n", "Requirement already satisfied: MarkupSafe>=2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from jinja2->torch>=1.11.0->sentence-transformers>=2.6.0->langchain-huggingface) (2.1.5)\n", "Requirement already satisfied: sniffio>=1.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from anyio->httpx<1,>=0.23.0->langsmith<0.4,>=0.1.126->langchain-core<1.0.0,>=0.3.59->langchain-huggingface) (1.3.1)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "\n", "[notice] A new release of pip is available: 25.0 -> 25.1.1\n", "[notice] To update, run: C:\\Users\\acer\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe -m pip install --upgrade pip\n" ] } ], "source": [ "!pip install -U langchain-huggingface " ] }, { "cell_type": "markdown", "id": "a6ed789d-46be-49e6-b14b-a49bbb23749a", "metadata": {}, "source": [ "db_books = Chroma.from_documents(\n", " documents,\n", " embedding=OpenAIEmbeddings())\n", " did not work becuase openai require paid credit" ] }, { "cell_type": "code", "execution_count": 11, "id": "f9f888d6-9984-4c7b-b0c7-41e47aa14e7d", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Requirement already satisfied: langchain-community in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (0.3.24)\n", "Requirement already satisfied: chromadb in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (1.0.9)\n", "Requirement already satisfied: langchain-core<1.0.0,>=0.3.59 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (0.3.60)\n", "Requirement already satisfied: langchain<1.0.0,>=0.3.25 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (0.3.25)\n", "Requirement already satisfied: SQLAlchemy<3,>=1.4 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (2.0.41)\n", "Requirement already satisfied: requests<3,>=2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (2.32.3)\n", "Requirement already satisfied: PyYAML>=5.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (6.0.2)\n", "Requirement already satisfied: aiohttp<4.0.0,>=3.8.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (3.11.18)\n", "Requirement already satisfied: tenacity!=8.4.0,<10,>=8.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (9.0.0)\n", "Requirement already satisfied: dataclasses-json<0.7,>=0.5.7 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (0.6.7)\n", "Requirement already satisfied: pydantic-settings<3.0.0,>=2.4.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (2.9.1)\n", "Requirement already satisfied: langsmith<0.4,>=0.1.125 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (0.3.42)\n", "Requirement already satisfied: httpx-sse<1.0.0,>=0.4.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (0.4.0)\n", "Requirement already satisfied: numpy>=1.26.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-community) (2.2.5)\n", "Requirement already satisfied: build>=1.0.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (1.2.2.post1)\n", "Requirement already satisfied: pydantic>=1.9 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (2.10.6)\n", "Requirement already satisfied: fastapi==0.115.9 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (0.115.9)\n", "Requirement already satisfied: uvicorn>=0.18.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from uvicorn[standard]>=0.18.3->chromadb) (0.34.2)\n", "Requirement already satisfied: posthog>=2.4.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (4.0.1)\n", "Requirement already satisfied: typing-extensions>=4.5.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (4.12.2)\n", "Requirement already satisfied: onnxruntime>=1.14.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (1.22.0)\n", "Requirement already satisfied: opentelemetry-api>=1.2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (1.33.1)\n", "Requirement already satisfied: opentelemetry-exporter-otlp-proto-grpc>=1.2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (1.33.1)\n", "Requirement already satisfied: opentelemetry-instrumentation-fastapi>=0.41b0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (0.54b1)\n", "Requirement already satisfied: opentelemetry-sdk>=1.2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (1.33.1)\n", "Requirement already satisfied: tokenizers>=0.13.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (0.21.1)\n", "Requirement already satisfied: pypika>=0.48.9 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (0.48.9)\n", "Requirement already satisfied: tqdm>=4.65.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (4.67.1)\n", "Requirement already satisfied: overrides>=7.3.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (7.7.0)\n", "Requirement already satisfied: importlib-resources in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (6.5.2)\n", "Requirement already satisfied: grpcio>=1.58.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (1.71.0)\n", "Requirement already satisfied: bcrypt>=4.0.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (4.3.0)\n", "Requirement already satisfied: typer>=0.9.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (0.15.4)\n", "Requirement already satisfied: kubernetes>=28.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (32.0.1)\n", "Requirement already satisfied: mmh3>=4.0.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (5.1.0)\n", "Requirement already satisfied: orjson>=3.9.12 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (3.10.18)\n", "Requirement already satisfied: httpx>=0.27.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (0.28.1)\n", "Requirement already satisfied: rich>=10.11.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (14.0.0)\n", "Requirement already satisfied: jsonschema>=4.19.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from chromadb) (4.23.0)\n", "Requirement already satisfied: starlette<0.46.0,>=0.40.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from fastapi==0.115.9->chromadb) (0.45.3)\n", "Requirement already satisfied: aiohappyeyeballs>=2.3.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from aiohttp<4.0.0,>=3.8.3->langchain-community) (2.6.1)\n", "Requirement already satisfied: aiosignal>=1.1.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from aiohttp<4.0.0,>=3.8.3->langchain-community) (1.3.2)\n", "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from aiohttp<4.0.0,>=3.8.3->langchain-community) (25.1.0)\n", "Requirement already satisfied: frozenlist>=1.1.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from aiohttp<4.0.0,>=3.8.3->langchain-community) (1.6.0)\n", "Requirement already satisfied: multidict<7.0,>=4.5 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from aiohttp<4.0.0,>=3.8.3->langchain-community) (6.4.4)\n", "Requirement already satisfied: propcache>=0.2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from aiohttp<4.0.0,>=3.8.3->langchain-community) (0.3.1)\n", "Requirement already satisfied: yarl<2.0,>=1.17.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from aiohttp<4.0.0,>=3.8.3->langchain-community) (1.20.0)\n", "Requirement already satisfied: packaging>=19.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from build>=1.0.3->chromadb) (24.2)\n", "Requirement already satisfied: pyproject_hooks in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from build>=1.0.3->chromadb) (1.2.0)\n", "Requirement already satisfied: colorama in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from build>=1.0.3->chromadb) (0.4.6)\n", "Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from dataclasses-json<0.7,>=0.5.7->langchain-community) (3.26.1)\n", "Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from dataclasses-json<0.7,>=0.5.7->langchain-community) (0.9.0)\n", "Requirement already satisfied: anyio in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpx>=0.27.0->chromadb) (4.8.0)\n", "Requirement already satisfied: certifi in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpx>=0.27.0->chromadb) (2024.12.14)\n", "Requirement already satisfied: httpcore==1.* in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpx>=0.27.0->chromadb) (1.0.7)\n", "Requirement already satisfied: idna in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpx>=0.27.0->chromadb) (3.10)\n", "Requirement already satisfied: h11<0.15,>=0.13 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from httpcore==1.*->httpx>=0.27.0->chromadb) (0.14.0)\n", "Requirement already satisfied: jsonschema-specifications>=2023.03.6 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from jsonschema>=4.19.0->chromadb) (2024.10.1)\n", "Requirement already satisfied: referencing>=0.28.4 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from jsonschema>=4.19.0->chromadb) (0.36.2)\n", "Requirement already satisfied: rpds-py>=0.7.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from jsonschema>=4.19.0->chromadb) (0.22.3)\n", "Requirement already satisfied: six>=1.9.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (1.17.0)\n", "Requirement already satisfied: python-dateutil>=2.5.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (2.9.0.post0)\n", "Requirement already satisfied: google-auth>=1.0.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (2.40.1)\n", "Requirement already satisfied: websocket-client!=0.40.0,!=0.41.*,!=0.42.*,>=0.32.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (1.8.0)\n", "Requirement already satisfied: requests-oauthlib in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (2.0.0)\n", "Requirement already satisfied: oauthlib>=3.2.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (3.2.2)\n", "Requirement already satisfied: urllib3>=1.24.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (2.3.0)\n", "Requirement already satisfied: durationpy>=0.7 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from kubernetes>=28.1.0->chromadb) (0.10)\n", "Requirement already satisfied: langchain-text-splitters<1.0.0,>=0.3.8 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain<1.0.0,>=0.3.25->langchain-community) (0.3.8)\n", "Requirement already satisfied: jsonpatch<2.0,>=1.33 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langchain-core<1.0.0,>=0.3.59->langchain-community) (1.33)\n", "Requirement already satisfied: requests-toolbelt<2.0.0,>=1.0.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langsmith<0.4,>=0.1.125->langchain-community) (1.0.0)\n", "Requirement already satisfied: zstandard<0.24.0,>=0.23.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from langsmith<0.4,>=0.1.125->langchain-community) (0.23.0)\n", "Requirement already satisfied: coloredlogs in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from onnxruntime>=1.14.1->chromadb) (15.0.1)\n", "Requirement already satisfied: flatbuffers in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from onnxruntime>=1.14.1->chromadb) (25.2.10)\n", "Requirement already satisfied: protobuf in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from onnxruntime>=1.14.1->chromadb) (5.29.4)\n", "Requirement already satisfied: sympy in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from onnxruntime>=1.14.1->chromadb) (1.14.0)\n", "Requirement already satisfied: deprecated>=1.2.6 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-api>=1.2.0->chromadb) (1.2.18)\n", "Requirement already satisfied: importlib-metadata<8.7.0,>=6.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-api>=1.2.0->chromadb) (8.6.1)\n", "Requirement already satisfied: googleapis-common-protos~=1.52 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-exporter-otlp-proto-grpc>=1.2.0->chromadb) (1.70.0)\n", "Requirement already satisfied: opentelemetry-exporter-otlp-proto-common==1.33.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-exporter-otlp-proto-grpc>=1.2.0->chromadb) (1.33.1)\n", "Requirement already satisfied: opentelemetry-proto==1.33.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-exporter-otlp-proto-grpc>=1.2.0->chromadb) (1.33.1)\n", "Requirement already satisfied: opentelemetry-instrumentation-asgi==0.54b1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-instrumentation-fastapi>=0.41b0->chromadb) (0.54b1)\n", "Requirement already satisfied: opentelemetry-instrumentation==0.54b1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-instrumentation-fastapi>=0.41b0->chromadb) (0.54b1)\n", "Requirement already satisfied: opentelemetry-semantic-conventions==0.54b1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-instrumentation-fastapi>=0.41b0->chromadb) (0.54b1)\n", "Requirement already satisfied: opentelemetry-util-http==0.54b1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-instrumentation-fastapi>=0.41b0->chromadb) (0.54b1)\n", "Requirement already satisfied: wrapt<2.0.0,>=1.0.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-instrumentation==0.54b1->opentelemetry-instrumentation-fastapi>=0.41b0->chromadb) (1.17.2)\n", "Requirement already satisfied: asgiref~=3.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from opentelemetry-instrumentation-asgi==0.54b1->opentelemetry-instrumentation-fastapi>=0.41b0->chromadb) (3.8.1)\n", "Requirement already satisfied: backoff>=1.10.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from posthog>=2.4.0->chromadb) (2.2.1)\n", "Requirement already satisfied: distro>=1.5.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from posthog>=2.4.0->chromadb) (1.9.0)\n", "Requirement already satisfied: annotated-types>=0.6.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from pydantic>=1.9->chromadb) (0.7.0)\n", "Requirement already satisfied: pydantic-core==2.27.2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from pydantic>=1.9->chromadb) (2.27.2)\n", "Requirement already satisfied: python-dotenv>=0.21.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from pydantic-settings<3.0.0,>=2.4.0->langchain-community) (1.1.0)\n", "Requirement already satisfied: typing-inspection>=0.4.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from pydantic-settings<3.0.0,>=2.4.0->langchain-community) (0.4.0)\n", "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from requests<3,>=2->langchain-community) (3.4.1)\n", "Requirement already satisfied: markdown-it-py>=2.2.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from rich>=10.11.0->chromadb) (3.0.0)\n", "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from rich>=10.11.0->chromadb) (2.19.1)\n", "Requirement already satisfied: greenlet>=1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from SQLAlchemy<3,>=1.4->langchain-community) (3.2.2)\n", "Requirement already satisfied: huggingface-hub<1.0,>=0.16.4 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from tokenizers>=0.13.2->chromadb) (0.31.4)\n", "Requirement already satisfied: click<8.2,>=8.0.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from typer>=0.9.0->chromadb) (8.1.8)\n", "Requirement already satisfied: shellingham>=1.3.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from typer>=0.9.0->chromadb) (1.5.4)\n", "Requirement already satisfied: httptools>=0.6.3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from uvicorn[standard]>=0.18.3->chromadb) (0.6.4)\n", "Requirement already satisfied: watchfiles>=0.13 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from uvicorn[standard]>=0.18.3->chromadb) (1.0.5)\n", "Requirement already satisfied: websockets>=10.4 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from uvicorn[standard]>=0.18.3->chromadb) (15.0.1)\n", "Requirement already satisfied: cachetools<6.0,>=2.0.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from google-auth>=1.0.1->kubernetes>=28.1.0->chromadb) (5.5.2)\n", "Requirement already satisfied: pyasn1-modules>=0.2.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from google-auth>=1.0.1->kubernetes>=28.1.0->chromadb) (0.4.2)\n", "Requirement already satisfied: rsa<5,>=3.1.4 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from google-auth>=1.0.1->kubernetes>=28.1.0->chromadb) (4.9.1)\n", "Requirement already satisfied: filelock in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers>=0.13.2->chromadb) (3.18.0)\n", "Requirement already satisfied: fsspec>=2023.5.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers>=0.13.2->chromadb) (2025.5.0)\n", "Requirement already satisfied: zipp>=3.20 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from importlib-metadata<8.7.0,>=6.0->opentelemetry-api>=1.2.0->chromadb) (3.21.0)\n", "Requirement already satisfied: jsonpointer>=1.9 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from jsonpatch<2.0,>=1.33->langchain-core<1.0.0,>=0.3.59->langchain-community) (3.0.0)\n", "Requirement already satisfied: mdurl~=0.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from markdown-it-py>=2.2.0->rich>=10.11.0->chromadb) (0.1.2)\n", "Requirement already satisfied: sniffio>=1.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from anyio->httpx>=0.27.0->chromadb) (1.3.1)\n", "Requirement already satisfied: mypy-extensions>=0.3.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from typing-inspect<1,>=0.4.0->dataclasses-json<0.7,>=0.5.7->langchain-community) (1.1.0)\n", "Requirement already satisfied: humanfriendly>=9.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from coloredlogs->onnxruntime>=1.14.1->chromadb) (10.0)\n", "Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from sympy->onnxruntime>=1.14.1->chromadb) (1.3.0)\n", "Requirement already satisfied: pyreadline3 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from humanfriendly>=9.1->coloredlogs->onnxruntime>=1.14.1->chromadb) (3.5.4)\n", "Requirement already satisfied: pyasn1<0.7.0,>=0.6.1 in c:\\users\\acer\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from pyasn1-modules>=0.2.1->google-auth>=1.0.1->kubernetes>=28.1.0->chromadb) (0.6.1)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~ (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~atplotlib (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~cipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "WARNING: Ignoring invalid distribution ~~ipy (C:\\Users\\acer\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\site-packages)\n", "\n", "[notice] A new release of pip is available: 25.0 -> 25.1.1\n", "[notice] To update, run: C:\\Users\\acer\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe -m pip install --upgrade pip\n" ] } ], "source": [ "!pip install langchain-community chromadb\n" ] }, { "cell_type": "code", "execution_count": 12, "id": "74fe37d4-5e1c-4e0a-87b4-e1b2873db3f2", "metadata": {}, "outputs": [], "source": [ "from langchain_community.vectorstores import Chroma\n", "from langchain_huggingface import HuggingFaceEmbeddings\n", "\n", "embedding = HuggingFaceEmbeddings(model_name=\"sentence-transformers/all-MiniLM-L6-v2\")\n", "db_books = Chroma.from_documents(documents, embedding=embedding)\n" ] }, { "cell_type": "code", "execution_count": 13, "id": "56d9b805-28fa-410d-b0d0-2962fdf754e5", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[Document(metadata={'source': 'tagged_description.txt'}, page_content='9780786808069 Children will discover the exciting world of their own backyard in this introduction to familiar animals from cats and dogs to bugs and frogs. The combination of photographs, illustrations, and fun facts make this an accessible and delightful learning experience.'),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content=\"9780786808380 Introduce your babies to birds, cats, dogs, and babies through fine art, illustration, and photographs. These books are a rare opportunity to expose little ones to a range of images on a single subject, from simple child's drawings and abstract art to playful photos. A brief text accompanies each image, introducing the baby to some basic -- and sometimes playful -- information about the subjects.\"),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content=\"9780786808397 Introduce your baby to birds, cats, dogs, and babies through fine art, illustration, and photographs. These books are a rare opportunity to exopse little ones to a range of images on a single subject, from simple child's drawings and abstract art to playful photos. A brief text accompanies each image, introducing baby to some basic -- and sometimes playful -- information about the subjects.\"),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content=\"9780060959036 Barbara Kingsolver's fifth novel is a hymn to wildness that celebrates the prodigal spirit of human nature, and of nature itself. It weaves together three stories of human love within a larger tapestry of lives amid the mountains and farms of southern Appalachia. Over the course of one humid summer, this novel's intriguing protagonists face disparate predicaments but find connections to one another and to the flora and fauna with which they necessarily share a place.\"),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content=\"9780786808373 Introducing your baby to birds, cats, dogs, and babies through fine art, illsutration and photographs. These books are a rare opportunity to expose little ones to a range of images on a single subject, from simple child's drawings and abstract art to playful photos. A brief text accompanies each image, introducing baby to some basic -- and sometimes playful -- information on the subjects.\"),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content=\"9780374522599 The Control of Nature is John McPhee's bestselling account of places where people are locked in combat with nature. Taking us deep into these contested territories, McPhee details the strageties and tactics through which people attempt to control nature. Most striking is his depiction of the main contestants: nature in complex and awesome guises, and those attempting to wrest control from her - stubborn, sometimes foolhardy, more often ingenious, and always arresting characters.\"),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content='9780786819119 Charming illustrations and playful rhythmic verse make real-life learning fun by taking babies and toddlers on an adventurous discovery of water and its many sources. Squeezable and floatable, Water, Water, Everywhere can be enjoyed in and out of the tub.'),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content=\"9780064402453 ‘Racso, a brash and boastful little rodent, is making his way to Thorn Valley, determined to learn how to read and write and become a hero. His bragging and lies get him off to a bad start, but a crisis gives him the opportunity to prove his mettle. A worthy successor [to Mrs. Frisby and the Rats of NIMH, a Newbery Medal winner by the author's father].' 'BL. 1986 Children's Editors' Choices (BL) Children's Choices for 1987 (IRA/CBC) Notable 1986 Childrens' Trade Books in Social Studies (NCSS/CBC) 1986 Children's Books (NY Public Library) Best Science Fiction/Fantasy 1986 (VOYA)\"),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content='\"9781593851170 \"\"Comprehensive and up to date, this tightly edited volume belongs on the desks of researchers and students in developmental psychology, comparative psychology, animal behavior, and evolutionary psychology, and will also be of interest to anthropologists. It is a richly informative text for advanced undergraduate- and graduate-level courses.\"\"--BOOK JACKET.\"'),\n", " Document(metadata={'source': 'tagged_description.txt'}, page_content=\"9780064403870 When Margaret and her younger brother, Artie, get lost in the woods on a family camping trip, they are rescued by rats -- the superintelligent rats of NIMH. Taken into the rat's community, the children are safe for the time being. But winter is coming. Margaret and Artie have to get back home. And when they do, they must protect the rats who have helped them. Everything depends on their silence... but it's hard to evade questions forever. Children's Choices for 1991 (IRA/CBC)VOYA's Best Science Fiction, Fantasy, and Horror 1990Parenting Honorable Mention, Reading Magic Award\")]" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "query = \"A book to teach children about nature\"\n", "docs = db_books.similarity_search(query, k = 10)\n", "docs" ] }, { "cell_type": "code", "execution_count": 14, "id": "cdb449ab-2f48-401e-a996-55a19b5bd707", "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", "
isbn13isbn10titleauthorscategoriesthumbnaildescriptionpublished_yearaverage_ratingnum_pagesratings_counttitle_and_subtitletagged_description
374797807868080690786808063Baby Einstein: Neighborhood AnimalsMarilyn Singer;Julie Aigner-ClarkJuvenile Fictionhttp://books.google.com/books/content?id=X9a4P...Children will discover the exciting world of t...2001.03.8916.0180.0Baby Einstein: Neighborhood Animals9780786808069 Children will discover the excit...
\n", "
" ], "text/plain": [ " isbn13 isbn10 title \\\n", "3747 9780786808069 0786808063 Baby Einstein: Neighborhood Animals \n", "\n", " authors categories \\\n", "3747 Marilyn Singer;Julie Aigner-Clark Juvenile Fiction \n", "\n", " thumbnail \\\n", "3747 http://books.google.com/books/content?id=X9a4P... \n", "\n", " description published_year \\\n", "3747 Children will discover the exciting world of t... 2001.0 \n", "\n", " average_rating num_pages ratings_count \\\n", "3747 3.89 16.0 180.0 \n", "\n", " title_and_subtitle \\\n", "3747 Baby Einstein: Neighborhood Animals \n", "\n", " tagged_description \n", "3747 9780786808069 Children will discover the excit... " ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "books[books[\"isbn13\"] == int(docs[0].page_content.split()[0].strip())]\n" ] }, { "cell_type": "code", "execution_count": 15, "id": "01c4e17d-82c0-41fc-b390-72d450a74b77", "metadata": {}, "outputs": [], "source": [ "def retrieve_semantic_recommendations(\n", " query: str,\n", " top_k: int = 10,\n", ") -> pd.DataFrame:\n", " recs = db_books.similarity_search(query, k = 50)\n", "\n", " books_list = []\n", "\n", " for i in range(0, len(recs)):\n", " books_list += [int(recs[i].page_content.strip('\"').split()[0])]\n", "\n", " return books[books[\"isbn13\"].isin(books_list)]\n" ] }, { "cell_type": "code", "execution_count": 17, "id": "6830517e-df7c-4bb5-b21d-fca9a786e6d3", "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", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
isbn13isbn10titleauthorscategoriesthumbnaildescriptionpublished_yearaverage_ratingnum_pagesratings_counttitle_and_subtitletagged_description
17097800605894620060589469Zen and the Art of Motorcycle MaintenanceRobert M. PirsigPsychologyhttp://books.google.com/books/content?id=KMRRe...One of the most important and influential book...2006.03.77540.0157734.0Zen and the Art of Motorcycle Maintenance: An ...9780060589462 One of the most important and in...
21597800607604410060760443The Reading GroupElizabeth NobleFictionhttp://books.google.com/books/content?id=IagWj...The Reading Group follows the trials and tribu...2005.03.34429.06408.0The Reading Group: A Novel9780060760441 The Reading Group follows the tr...
28297800609151860060915188An American ChildhoodAnnie DillardBiography & Autobiographyhttp://books.google.com/books/content?id=tRihT...A book that instantly captured the hearts of r...1988.03.91255.07086.0An American Childhood9780060915186 A book that instantly captured t...
3349780060976118006097611XOperation Wandering SoulRichard PowersFictionhttp://books.google.com/books/content?id=nIGIm...Highly imaginative and emotionally powerful, t...1994.03.62352.0366.0Operation Wandering Soul9780060976118 Highly imaginative and emotional...
36397800611200770061120073A Tree Grows in BrooklynBetty SmithFictionhttp://books.google.com/books/content?id=Y-FZ9...The beloved American classic about a young gir...2006.04.26496.0326733.0A Tree Grows in Brooklyn9780061120077 The beloved American classic abo...
3979780062512796006251279XThe PilgrimagePaulo Coelho;Alan R. ClarkeFictionhttp://books.google.com/books/content?id=atdJc...Previously published as The Diary of a Magus, ...1995.03.65272.0878.0The Pilgrimage9780062512796 Previously published as The Diar...
40497800644024530064402452Racso and the Rats of NIMHJane Leslie ConlyJuvenile Fictionhttp://books.google.com/books/content?id=MgoNv...‘Racso, a brash and boastful little rodent, is...1988.03.76288.03231.0Racso and the Rats of NIMH9780064402453 ‘Racso, a brash and boastful lit...
40797800644044190064404412The Rainbow PeopleLaurence YepJuvenile Fictionhttp://books.google.com/books/content?id=5AHwq...\"Culled from 69 stories collected in a [1930s]...1992.03.75208.0202.0The Rainbow People9780064404419 \"Culled from 69 stories collecte...
41297800644057130064405710Crazy Lady!Jane Leslie ConlyJuvenile Fictionhttp://books.google.com/books/content?id=aJwh7...Increasingly alienated from his widowed father...1995.03.64192.01481.0Crazy Lady!9780064405713 Increasingly alienated from his ...
7319780141015088014101508XHow to Breathe UnderwaterJulie OrringerFamilieshttp://books.google.com/books/content?id=t1v9V...In her dazzling first book Julie Orringer dive...2005.03.96222.0188.0How to Breathe Underwater: Stories9780141015088 In her dazzling first book Julie...
81897801424032040142403202FirebirdsSharyn NovemberJuvenile Fictionhttp://books.google.com/books/content?id=hL-gA...Sixteen original stories showcase some of the ...2005.03.96432.03374.0Firebirds: An Anthology of Original Fantasy an...9780142403204 Sixteen original stories showcas...
84097801430349020143034901The Shadow of the WindCarlos Ruiz ZafónFictionhttp://books.google.com/books/content?id=zQJSr...The international literary sensation--a runawa...2005.04.26487.0306069.0The Shadow of the Wind9780143034902 The international literary sensa...
84697801430363570143036351Why I WriteGeorge OrwellLanguage Arts & Disciplineshttp://books.google.com/books/content?id=6I_qP...Throughout history, some books have changed th...2005.04.03120.05874.0Why I Write9780143036357 Throughout history, some books h...
125497803124227380312422733A Feather on the Breath of GodSigrid NunezFictionhttp://books.google.com/books/content?id=Y9Kes...Growing up in a New York housing project durin...2005.03.87192.0447.0A Feather on the Breath of God: A Novel9780312422738 Growing up in a New York housing...
159097803491134870349113483Aldous HuxleyNicholas MurrayGreat Britainhttp://books.google.com/books/content?id=ysCQG...The grandson of biologist T. H. Huxley, Aldous...2003.03.82496.082.0Aldous Huxley: An English Intellectual9780349113487 The grandson of biologist T. H. ...
163897803742991940374299196The Discomfort ZoneJonathan FranzenBiography & Autobiographyhttp://books.google.com/books/content?id=Z2vOA...The author describes growing up in a family of...2006.03.39195.04660.0The Discomfort Zone: A Personal History9780374299194 The author describes growing up ...
165297803745285390374528535Get Out of My Life, But First Could You Drive ...Anthony E. WolfFamily & Relationshipshttp://books.google.com/books/content?id=oKdbC...A lighthearted but insightful guide to raising...2002.03.94240.01301.0Get Out of My Life, But First Could You Drive ...9780374528539 A lighthearted but insightful gu...
169197803757074900375707492Lives of Girls and WomenAlice MunroFictionNaNA poignant portrayal of a young girl's youth i...2001.03.99277.08085.0Lives of Girls and Women9780375707490 A poignant portrayal of a young ...
170697803757250360375725032Elect Mr. Robinson for a Better WorldDonald AntrimFictionhttp://books.google.com/books/content?id=E-GwA...In a world marked by full-scale neighborhood w...1993.03.67185.0795.0Elect Mr. Robinson for a Better World9780375725036 In a world marked by full-scale ...
188097803857325500385732554The GiverLois LowryJuvenile Fictionhttp://books.google.com/books/content?id=oZRlY...At the age of twelve, Jonas, a young boy from ...2006.04.12208.01464909.0The Giver9780385732550 At the age of twelve, Jonas, a y...
188897803930405860393040585The Confident ChildT. E. ApterFamily & Relationshipshttp://books.google.com/books/content?id=stxpQ...Focusing on children from age five to fifteen,...1997.03.62270.013.0The Confident Child: Raising a Child to Try, L...9780393040586 Focusing on children from age fi...
218397804402293530440229359How Angel Peterson Got His NameGary PaulsenJuvenile Nonfictionhttp://books.google.com/books/content?id=maJrL...Author Gary Paulsen relates tales from his you...2004.03.93111.01139.0How Angel Peterson Got His Name: And Other Out...9780440229353 Author Gary Paulsen relates tale...
22619780446518628044651862XThe Celestine ProphecyJames RedfieldFictionhttp://books.google.com/books/content?id=UXolx...You have never read a book like this before --...1994.03.63247.01280.0The Celestine Prophecy: An Adventure9780446518628 You have never read a book like ...
232697804490011720449001172Wartime LiesLouis BegleyFictionhttp://books.google.com/books/content?id=V-aLD...A haunting, unforgettable novel about an orpha...1997.03.70240.0503.0Wartime Lies9780449001172 A haunting, unforgettable novel ...
245797804650169070465016901The Drama of the Gifted ChildNaNPsychologyhttp://books.google.com/books/content?id=TgtTz...Why are many of the most successful people pla...1997.04.09144.011373.0The Drama of the Gifted Child: The Search for ...9780465016907 Why are many of the most success...
281397805711937830571193781The New LifeOrhan PamukBus travelhttp://books.google.com/books/content?id=KOAJG...A parable about love, literature and fanaticis...1998.03.55296.04422.0The New Life9780571193783 A parable about love, literature...
281597805712006100571200613Garden StateRick MoodyTeenagershttp://books.google.com/books/content?id=ve3aP...This first novel by the acclaimed author of De...2002.03.07212.0702.0Garden State9780571200610 This first novel by the acclaime...
305397806769771100676977111Never Let Me GoKazuo IshiguroBoarding school-fictionhttp://books.google.com/books/content?id=taygT...A gothic tour de force. A meditation on mortal...2006.03.81288.01091.0Never Let Me Go9780676977110 A gothic tour de force. A medita...
331797807432437800743243781Teacher ManFrank McCourtBiography & Autobiographyhttp://books.google.com/books/content?id=Yhgcw...The author describes his coming of age as a te...2006.03.75272.025726.0Teacher Man: A Memoir9780743243780 The author describes his coming ...
335397807432727730743272773How to Win Friends and Influence People for Te...Donna Dale CarnegieSelf-Helphttp://books.google.com/books/content?id=eIc2l...Donna Dale Carnegie, daughter of the late moti...2005.03.90208.0426.0How to Win Friends and Influence People for Te...9780743272773 Donna Dale Carnegie, daughter of...
347897807475746510747574650Old SchoolTobias WolffAuthorshttp://books.google.com/books/content?id=qNrFw...It's 1960, in America, at a prestigious boys' ...2005.03.82195.07763.0Old School9780747574651 It's 1960, in America, at a pres...
366797807653576630765357666Hidden TalentsDavid LubarJuvenile Fictionhttp://books.google.com/books/content?id=wgEFP...When thirteen-year-old Martin Anderson arrives...2007.03.93240.02333.0Hidden Talents9780765357663 When thirteen-year-old Martin An...
376097807868129120786812915The Big BoxToni Morrison;Slade MorrisonJuvenile Fictionhttp://books.google.com/books/content?id=LyYKA...In her first illustrated book for children, th...2002.03.9548.0375.0The Big Box9780786812912 In her first illustrated book fo...
381997808021366880802136680This boy's lifeTobias WolffBiography & Autobiographyhttp://books.google.com/books/content?id=JCl2p...The author chronicles the tumultuous events of...1999.03.98304.022157.0This boy's life9780802136688 The author chronicles the tumult...
383497808024314860802431488The 10 Commandments of ParentingH. Edwin YoungReligionhttp://books.google.com/books/content?id=Q1Hxj...Drawn from years of counseling and the author'...2005.04.00224.025.0The 10 Commandments of Parenting: The Do's and...9780802431486 Drawn from years of counseling a...
392997808112011240811201120Henry Miller on WritingHenry MillerLiterary Criticismhttp://books.google.com/books/content?id=tNB6w...Some of the most rewarding pages in Henry Mill...1964.04.23217.0937.0Henry Miller on Writing9780811201124 Some of the most rewarding pages...
39979780812971064081297106XReading Lolita in TehranAzar NafisiBiography & Autobiographyhttp://books.google.com/books/content?id=xOOgR...Describes growing up in the Islamic Republic o...2004.03.60356.0102707.0Reading Lolita in Tehran: A Memoir in Books9780812971064 Describes growing up in the Isla...
407597808245212330824521234Save the DateJason King;Donna FreitasReligionhttp://books.google.com/books/content?id=QUMPA...In this funny and lighthearted book by twentys...2003.03.75191.04.0Save the Date: A Spirituality of Dating, Love,...9780824521233 In this funny and lighthearted b...
408497808264147550826414753Gabriel Garcia Marquez's Love in the Time of C...Tom FahyLiterary Criticismhttp://books.google.com/books/content?id=ayjUA...A brilliant idea--short, perceptive books whic...2003.04.23188.01729.0Gabriel Garcia Marquez's Love in the Time of C...9780826414755 A brilliant idea--short, percept...
425297809361974490936197447Yes, Your Teen Is Crazy!Michael J. BradleyFamily & Relationshipshttp://books.google.com/books/content?id=51wMA...A survival guide for parents helps beleagured ...2002.04.30332.0759.0Yes, Your Teen Is Crazy!: Loving Your Kid With...9780936197449 A survival guide for parents hel...
429497809746078940974607894First LoveIvan Sergeevich TurgenevFictionhttp://books.google.com/books/content?id=VcNvD...This vivid, sensitive tale of adolescent love ...2004.03.79124.05551.0First Love9780974607894 This vivid, sensitive tale of ad...
442197814012113491401211348How to Talk So Teens Will Listen & Listen So T...Adele FaberCommunication in familiesNaNPresents a practical guide that addresses many...2006.04.11187.01522.0How to Talk So Teens Will Listen & Listen So T...9781401211349 Presents a practical guide that ...
456097815511141251551114127The GovernessSarah FieldingFictionhttp://books.google.com/books/content?id=zHAx9...Published in 1749, the story of Mrs. Teachum a...2005.02.62242.0119.0The Governess: The Governess ; or, The Little ...9781551114125 Published in 1749, the story of ...
459697815600678491560067845Flowers for AlgernonPatrice CassedyJuvenile Nonfictionhttp://books.google.com/books/content?id=x_CUf...Discusses the young adult book \"Flowers for Al...2000.03.0096.01.0Flowers for Algernon9781560067849 Discusses the young adult book \"...
460797815617967791561796778Boomers, Xers, and Other StrangersRick Hicks;Kathy HicksSocial Sciencehttp://books.google.com/books/content?id=IogMA...The authors maintain that children's core valu...1999.03.36384.028.0Boomers, Xers, and Other Strangers: Understand...9781561796779 The authors maintain that childr...
471397815768395461576839540Parenting with Love and LogicFoster Cline;Jim FayFamily & Relationshipshttp://books.google.com/books/content?id=TpCtP...Cline and Fay offer advice to help parents rai...2006.04.07271.09486.0Parenting with Love and Logic: Teaching Childr...9781576839546 Cline and Fay offer advice to he...
477097815824332261582433224A Complicated KindnessMiriam ToewsFictionhttp://books.google.com/books/content?id=Vy6Ct...A witty, beleaguered teenager whose family is ...2005.03.65253.017112.0A Complicated Kindness9781582433226 A witty, beleaguered teenager wh...
490497815944815741594481571Plan BAnne LamottBiography & Autobiographyhttp://books.google.com/books/content?id=__EKD...A spiritual guide by the author of the best-se...2006.04.06352.018609.0Plan B: Further Thoughts on Faith9781594481574 A spiritual guide by the author ...
518997881222008508122200850Cry, the PeacockAnita DesaiFictionhttp://books.google.com/books/content?id=_QKwV...This book is the story of a young girl obsesse...1980.03.22218.0134.0Cry, the Peacock9788122200850 This book is the story of a youn...
519397881730310148173031010Journey to the EastHermann HesseAdventure storieshttp://books.google.com/books/content?id=rq6JP...This book tells the tale of a man who goes on ...2002.03.70175.024.0Journey to the East9788173031014 This book tells the tale of a ma...
\n", "
" ], "text/plain": [ " isbn13 isbn10 \\\n", "170 9780060589462 0060589469 \n", "215 9780060760441 0060760443 \n", "282 9780060915186 0060915188 \n", "334 9780060976118 006097611X \n", "363 9780061120077 0061120073 \n", "397 9780062512796 006251279X \n", "404 9780064402453 0064402452 \n", "407 9780064404419 0064404412 \n", "412 9780064405713 0064405710 \n", "731 9780141015088 014101508X \n", "818 9780142403204 0142403202 \n", "840 9780143034902 0143034901 \n", "846 9780143036357 0143036351 \n", "1254 9780312422738 0312422733 \n", "1590 9780349113487 0349113483 \n", "1638 9780374299194 0374299196 \n", "1652 9780374528539 0374528535 \n", "1691 9780375707490 0375707492 \n", "1706 9780375725036 0375725032 \n", "1880 9780385732550 0385732554 \n", "1888 9780393040586 0393040585 \n", "2183 9780440229353 0440229359 \n", "2261 9780446518628 044651862X \n", "2326 9780449001172 0449001172 \n", "2457 9780465016907 0465016901 \n", "2813 9780571193783 0571193781 \n", "2815 9780571200610 0571200613 \n", "3053 9780676977110 0676977111 \n", "3317 9780743243780 0743243781 \n", "3353 9780743272773 0743272773 \n", "3478 9780747574651 0747574650 \n", "3667 9780765357663 0765357666 \n", "3760 9780786812912 0786812915 \n", "3819 9780802136688 0802136680 \n", "3834 9780802431486 0802431488 \n", "3929 9780811201124 0811201120 \n", "3997 9780812971064 081297106X \n", "4075 9780824521233 0824521234 \n", "4084 9780826414755 0826414753 \n", "4252 9780936197449 0936197447 \n", "4294 9780974607894 0974607894 \n", "4421 9781401211349 1401211348 \n", "4560 9781551114125 1551114127 \n", "4596 9781560067849 1560067845 \n", "4607 9781561796779 1561796778 \n", "4713 9781576839546 1576839540 \n", "4770 9781582433226 1582433224 \n", "4904 9781594481574 1594481571 \n", "5189 9788122200850 8122200850 \n", "5193 9788173031014 8173031010 \n", "\n", " title \\\n", "170 Zen and the Art of Motorcycle Maintenance \n", "215 The Reading Group \n", "282 An American Childhood \n", "334 Operation Wandering Soul \n", "363 A Tree Grows in Brooklyn \n", "397 The Pilgrimage \n", "404 Racso and the Rats of NIMH \n", "407 The Rainbow People \n", "412 Crazy Lady! \n", "731 How to Breathe Underwater \n", "818 Firebirds \n", "840 The Shadow of the Wind \n", "846 Why I Write \n", "1254 A Feather on the Breath of God \n", "1590 Aldous Huxley \n", "1638 The Discomfort Zone \n", "1652 Get Out of My Life, But First Could You Drive ... \n", "1691 Lives of Girls and Women \n", "1706 Elect Mr. Robinson for a Better World \n", "1880 The Giver \n", "1888 The Confident Child \n", "2183 How Angel Peterson Got His Name \n", "2261 The Celestine Prophecy \n", "2326 Wartime Lies \n", "2457 The Drama of the Gifted Child \n", "2813 The New Life \n", "2815 Garden State \n", "3053 Never Let Me Go \n", "3317 Teacher Man \n", "3353 How to Win Friends and Influence People for Te... \n", "3478 Old School \n", "3667 Hidden Talents \n", "3760 The Big Box \n", "3819 This boy's life \n", "3834 The 10 Commandments of Parenting \n", "3929 Henry Miller on Writing \n", "3997 Reading Lolita in Tehran \n", "4075 Save the Date \n", "4084 Gabriel Garcia Marquez's Love in the Time of C... \n", "4252 Yes, Your Teen Is Crazy! \n", "4294 First Love \n", "4421 How to Talk So Teens Will Listen & Listen So T... \n", "4560 The Governess \n", "4596 Flowers for Algernon \n", "4607 Boomers, Xers, and Other Strangers \n", "4713 Parenting with Love and Logic \n", "4770 A Complicated Kindness \n", "4904 Plan B \n", "5189 Cry, the Peacock \n", "5193 Journey to the East \n", "\n", " authors categories \\\n", "170 Robert M. Pirsig Psychology \n", "215 Elizabeth Noble Fiction \n", "282 Annie Dillard Biography & Autobiography \n", "334 Richard Powers Fiction \n", "363 Betty Smith Fiction \n", "397 Paulo Coelho;Alan R. Clarke Fiction \n", "404 Jane Leslie Conly Juvenile Fiction \n", "407 Laurence Yep Juvenile Fiction \n", "412 Jane Leslie Conly Juvenile Fiction \n", "731 Julie Orringer Families \n", "818 Sharyn November Juvenile Fiction \n", "840 Carlos Ruiz Zafón Fiction \n", "846 George Orwell Language Arts & Disciplines \n", "1254 Sigrid Nunez Fiction \n", "1590 Nicholas Murray Great Britain \n", "1638 Jonathan Franzen Biography & Autobiography \n", "1652 Anthony E. Wolf Family & Relationships \n", "1691 Alice Munro Fiction \n", "1706 Donald Antrim Fiction \n", "1880 Lois Lowry Juvenile Fiction \n", "1888 T. E. Apter Family & Relationships \n", "2183 Gary Paulsen Juvenile Nonfiction \n", "2261 James Redfield Fiction \n", "2326 Louis Begley Fiction \n", "2457 NaN Psychology \n", "2813 Orhan Pamuk Bus travel \n", "2815 Rick Moody Teenagers \n", "3053 Kazuo Ishiguro Boarding school-fiction \n", "3317 Frank McCourt Biography & Autobiography \n", "3353 Donna Dale Carnegie Self-Help \n", "3478 Tobias Wolff Authors \n", "3667 David Lubar Juvenile Fiction \n", "3760 Toni Morrison;Slade Morrison Juvenile Fiction \n", "3819 Tobias Wolff Biography & Autobiography \n", "3834 H. Edwin Young Religion \n", "3929 Henry Miller Literary Criticism \n", "3997 Azar Nafisi Biography & Autobiography \n", "4075 Jason King;Donna Freitas Religion \n", "4084 Tom Fahy Literary Criticism \n", "4252 Michael J. Bradley Family & Relationships \n", "4294 Ivan Sergeevich Turgenev Fiction \n", "4421 Adele Faber Communication in families \n", "4560 Sarah Fielding Fiction \n", "4596 Patrice Cassedy Juvenile Nonfiction \n", "4607 Rick Hicks;Kathy Hicks Social Science \n", "4713 Foster Cline;Jim Fay Family & Relationships \n", "4770 Miriam Toews Fiction \n", "4904 Anne Lamott Biography & Autobiography \n", "5189 Anita Desai Fiction \n", "5193 Hermann Hesse Adventure stories \n", "\n", " thumbnail \\\n", "170 http://books.google.com/books/content?id=KMRRe... \n", "215 http://books.google.com/books/content?id=IagWj... \n", "282 http://books.google.com/books/content?id=tRihT... \n", "334 http://books.google.com/books/content?id=nIGIm... \n", "363 http://books.google.com/books/content?id=Y-FZ9... \n", "397 http://books.google.com/books/content?id=atdJc... \n", "404 http://books.google.com/books/content?id=MgoNv... \n", "407 http://books.google.com/books/content?id=5AHwq... \n", "412 http://books.google.com/books/content?id=aJwh7... \n", "731 http://books.google.com/books/content?id=t1v9V... \n", "818 http://books.google.com/books/content?id=hL-gA... \n", "840 http://books.google.com/books/content?id=zQJSr... \n", "846 http://books.google.com/books/content?id=6I_qP... \n", "1254 http://books.google.com/books/content?id=Y9Kes... \n", "1590 http://books.google.com/books/content?id=ysCQG... \n", "1638 http://books.google.com/books/content?id=Z2vOA... \n", "1652 http://books.google.com/books/content?id=oKdbC... \n", "1691 NaN \n", "1706 http://books.google.com/books/content?id=E-GwA... \n", "1880 http://books.google.com/books/content?id=oZRlY... \n", "1888 http://books.google.com/books/content?id=stxpQ... \n", "2183 http://books.google.com/books/content?id=maJrL... \n", "2261 http://books.google.com/books/content?id=UXolx... \n", "2326 http://books.google.com/books/content?id=V-aLD... \n", "2457 http://books.google.com/books/content?id=TgtTz... \n", "2813 http://books.google.com/books/content?id=KOAJG... \n", "2815 http://books.google.com/books/content?id=ve3aP... \n", "3053 http://books.google.com/books/content?id=taygT... \n", "3317 http://books.google.com/books/content?id=Yhgcw... \n", "3353 http://books.google.com/books/content?id=eIc2l... \n", "3478 http://books.google.com/books/content?id=qNrFw... \n", "3667 http://books.google.com/books/content?id=wgEFP... \n", "3760 http://books.google.com/books/content?id=LyYKA... \n", "3819 http://books.google.com/books/content?id=JCl2p... \n", "3834 http://books.google.com/books/content?id=Q1Hxj... \n", "3929 http://books.google.com/books/content?id=tNB6w... \n", "3997 http://books.google.com/books/content?id=xOOgR... \n", "4075 http://books.google.com/books/content?id=QUMPA... \n", "4084 http://books.google.com/books/content?id=ayjUA... \n", "4252 http://books.google.com/books/content?id=51wMA... \n", "4294 http://books.google.com/books/content?id=VcNvD... \n", "4421 NaN \n", "4560 http://books.google.com/books/content?id=zHAx9... \n", "4596 http://books.google.com/books/content?id=x_CUf... \n", "4607 http://books.google.com/books/content?id=IogMA... \n", "4713 http://books.google.com/books/content?id=TpCtP... \n", "4770 http://books.google.com/books/content?id=Vy6Ct... \n", "4904 http://books.google.com/books/content?id=__EKD... \n", "5189 http://books.google.com/books/content?id=_QKwV... \n", "5193 http://books.google.com/books/content?id=rq6JP... \n", "\n", " description published_year \\\n", "170 One of the most important and influential book... 2006.0 \n", "215 The Reading Group follows the trials and tribu... 2005.0 \n", "282 A book that instantly captured the hearts of r... 1988.0 \n", "334 Highly imaginative and emotionally powerful, t... 1994.0 \n", "363 The beloved American classic about a young gir... 2006.0 \n", "397 Previously published as The Diary of a Magus, ... 1995.0 \n", "404 ‘Racso, a brash and boastful little rodent, is... 1988.0 \n", "407 \"Culled from 69 stories collected in a [1930s]... 1992.0 \n", "412 Increasingly alienated from his widowed father... 1995.0 \n", "731 In her dazzling first book Julie Orringer dive... 2005.0 \n", "818 Sixteen original stories showcase some of the ... 2005.0 \n", "840 The international literary sensation--a runawa... 2005.0 \n", "846 Throughout history, some books have changed th... 2005.0 \n", "1254 Growing up in a New York housing project durin... 2005.0 \n", "1590 The grandson of biologist T. H. Huxley, Aldous... 2003.0 \n", "1638 The author describes growing up in a family of... 2006.0 \n", "1652 A lighthearted but insightful guide to raising... 2002.0 \n", "1691 A poignant portrayal of a young girl's youth i... 2001.0 \n", "1706 In a world marked by full-scale neighborhood w... 1993.0 \n", "1880 At the age of twelve, Jonas, a young boy from ... 2006.0 \n", "1888 Focusing on children from age five to fifteen,... 1997.0 \n", "2183 Author Gary Paulsen relates tales from his you... 2004.0 \n", "2261 You have never read a book like this before --... 1994.0 \n", "2326 A haunting, unforgettable novel about an orpha... 1997.0 \n", "2457 Why are many of the most successful people pla... 1997.0 \n", "2813 A parable about love, literature and fanaticis... 1998.0 \n", "2815 This first novel by the acclaimed author of De... 2002.0 \n", "3053 A gothic tour de force. A meditation on mortal... 2006.0 \n", "3317 The author describes his coming of age as a te... 2006.0 \n", "3353 Donna Dale Carnegie, daughter of the late moti... 2005.0 \n", "3478 It's 1960, in America, at a prestigious boys' ... 2005.0 \n", "3667 When thirteen-year-old Martin Anderson arrives... 2007.0 \n", "3760 In her first illustrated book for children, th... 2002.0 \n", "3819 The author chronicles the tumultuous events of... 1999.0 \n", "3834 Drawn from years of counseling and the author'... 2005.0 \n", "3929 Some of the most rewarding pages in Henry Mill... 1964.0 \n", "3997 Describes growing up in the Islamic Republic o... 2004.0 \n", "4075 In this funny and lighthearted book by twentys... 2003.0 \n", "4084 A brilliant idea--short, perceptive books whic... 2003.0 \n", "4252 A survival guide for parents helps beleagured ... 2002.0 \n", "4294 This vivid, sensitive tale of adolescent love ... 2004.0 \n", "4421 Presents a practical guide that addresses many... 2006.0 \n", "4560 Published in 1749, the story of Mrs. Teachum a... 2005.0 \n", "4596 Discusses the young adult book \"Flowers for Al... 2000.0 \n", "4607 The authors maintain that children's core valu... 1999.0 \n", "4713 Cline and Fay offer advice to help parents rai... 2006.0 \n", "4770 A witty, beleaguered teenager whose family is ... 2005.0 \n", "4904 A spiritual guide by the author of the best-se... 2006.0 \n", "5189 This book is the story of a young girl obsesse... 1980.0 \n", "5193 This book tells the tale of a man who goes on ... 2002.0 \n", "\n", " average_rating num_pages ratings_count \\\n", "170 3.77 540.0 157734.0 \n", "215 3.34 429.0 6408.0 \n", "282 3.91 255.0 7086.0 \n", "334 3.62 352.0 366.0 \n", "363 4.26 496.0 326733.0 \n", "397 3.65 272.0 878.0 \n", "404 3.76 288.0 3231.0 \n", "407 3.75 208.0 202.0 \n", "412 3.64 192.0 1481.0 \n", "731 3.96 222.0 188.0 \n", "818 3.96 432.0 3374.0 \n", "840 4.26 487.0 306069.0 \n", "846 4.03 120.0 5874.0 \n", "1254 3.87 192.0 447.0 \n", "1590 3.82 496.0 82.0 \n", "1638 3.39 195.0 4660.0 \n", "1652 3.94 240.0 1301.0 \n", "1691 3.99 277.0 8085.0 \n", "1706 3.67 185.0 795.0 \n", "1880 4.12 208.0 1464909.0 \n", "1888 3.62 270.0 13.0 \n", "2183 3.93 111.0 1139.0 \n", "2261 3.63 247.0 1280.0 \n", "2326 3.70 240.0 503.0 \n", "2457 4.09 144.0 11373.0 \n", "2813 3.55 296.0 4422.0 \n", "2815 3.07 212.0 702.0 \n", "3053 3.81 288.0 1091.0 \n", "3317 3.75 272.0 25726.0 \n", "3353 3.90 208.0 426.0 \n", "3478 3.82 195.0 7763.0 \n", "3667 3.93 240.0 2333.0 \n", "3760 3.95 48.0 375.0 \n", "3819 3.98 304.0 22157.0 \n", "3834 4.00 224.0 25.0 \n", "3929 4.23 217.0 937.0 \n", "3997 3.60 356.0 102707.0 \n", "4075 3.75 191.0 4.0 \n", "4084 4.23 188.0 1729.0 \n", "4252 4.30 332.0 759.0 \n", "4294 3.79 124.0 5551.0 \n", "4421 4.11 187.0 1522.0 \n", "4560 2.62 242.0 119.0 \n", "4596 3.00 96.0 1.0 \n", "4607 3.36 384.0 28.0 \n", "4713 4.07 271.0 9486.0 \n", "4770 3.65 253.0 17112.0 \n", "4904 4.06 352.0 18609.0 \n", "5189 3.22 218.0 134.0 \n", "5193 3.70 175.0 24.0 \n", "\n", " title_and_subtitle \\\n", "170 Zen and the Art of Motorcycle Maintenance: An ... \n", "215 The Reading Group: A Novel \n", "282 An American Childhood \n", "334 Operation Wandering Soul \n", "363 A Tree Grows in Brooklyn \n", "397 The Pilgrimage \n", "404 Racso and the Rats of NIMH \n", "407 The Rainbow People \n", "412 Crazy Lady! \n", "731 How to Breathe Underwater: Stories \n", "818 Firebirds: An Anthology of Original Fantasy an... \n", "840 The Shadow of the Wind \n", "846 Why I Write \n", "1254 A Feather on the Breath of God: A Novel \n", "1590 Aldous Huxley: An English Intellectual \n", "1638 The Discomfort Zone: A Personal History \n", "1652 Get Out of My Life, But First Could You Drive ... \n", "1691 Lives of Girls and Women \n", "1706 Elect Mr. Robinson for a Better World \n", "1880 The Giver \n", "1888 The Confident Child: Raising a Child to Try, L... \n", "2183 How Angel Peterson Got His Name: And Other Out... \n", "2261 The Celestine Prophecy: An Adventure \n", "2326 Wartime Lies \n", "2457 The Drama of the Gifted Child: The Search for ... \n", "2813 The New Life \n", "2815 Garden State \n", "3053 Never Let Me Go \n", "3317 Teacher Man: A Memoir \n", "3353 How to Win Friends and Influence People for Te... \n", "3478 Old School \n", "3667 Hidden Talents \n", "3760 The Big Box \n", "3819 This boy's life \n", "3834 The 10 Commandments of Parenting: The Do's and... \n", "3929 Henry Miller on Writing \n", "3997 Reading Lolita in Tehran: A Memoir in Books \n", "4075 Save the Date: A Spirituality of Dating, Love,... \n", "4084 Gabriel Garcia Marquez's Love in the Time of C... \n", "4252 Yes, Your Teen Is Crazy!: Loving Your Kid With... \n", "4294 First Love \n", "4421 How to Talk So Teens Will Listen & Listen So T... \n", "4560 The Governess: The Governess ; or, The Little ... \n", "4596 Flowers for Algernon \n", "4607 Boomers, Xers, and Other Strangers: Understand... \n", "4713 Parenting with Love and Logic: Teaching Childr... \n", "4770 A Complicated Kindness \n", "4904 Plan B: Further Thoughts on Faith \n", "5189 Cry, the Peacock \n", "5193 Journey to the East \n", "\n", " tagged_description \n", "170 9780060589462 One of the most important and in... \n", "215 9780060760441 The Reading Group follows the tr... \n", "282 9780060915186 A book that instantly captured t... \n", "334 9780060976118 Highly imaginative and emotional... \n", "363 9780061120077 The beloved American classic abo... \n", "397 9780062512796 Previously published as The Diar... \n", "404 9780064402453 ‘Racso, a brash and boastful lit... \n", "407 9780064404419 \"Culled from 69 stories collecte... \n", "412 9780064405713 Increasingly alienated from his ... \n", "731 9780141015088 In her dazzling first book Julie... \n", "818 9780142403204 Sixteen original stories showcas... \n", "840 9780143034902 The international literary sensa... \n", "846 9780143036357 Throughout history, some books h... \n", "1254 9780312422738 Growing up in a New York housing... \n", "1590 9780349113487 The grandson of biologist T. H. ... \n", "1638 9780374299194 The author describes growing up ... \n", "1652 9780374528539 A lighthearted but insightful gu... \n", "1691 9780375707490 A poignant portrayal of a young ... \n", "1706 9780375725036 In a world marked by full-scale ... \n", "1880 9780385732550 At the age of twelve, Jonas, a y... \n", "1888 9780393040586 Focusing on children from age fi... \n", "2183 9780440229353 Author Gary Paulsen relates tale... \n", "2261 9780446518628 You have never read a book like ... \n", "2326 9780449001172 A haunting, unforgettable novel ... \n", "2457 9780465016907 Why are many of the most success... \n", "2813 9780571193783 A parable about love, literature... \n", "2815 9780571200610 This first novel by the acclaime... \n", "3053 9780676977110 A gothic tour de force. A medita... \n", "3317 9780743243780 The author describes his coming ... \n", "3353 9780743272773 Donna Dale Carnegie, daughter of... \n", "3478 9780747574651 It's 1960, in America, at a pres... \n", "3667 9780765357663 When thirteen-year-old Martin An... \n", "3760 9780786812912 In her first illustrated book fo... \n", "3819 9780802136688 The author chronicles the tumult... \n", "3834 9780802431486 Drawn from years of counseling a... \n", "3929 9780811201124 Some of the most rewarding pages... \n", "3997 9780812971064 Describes growing up in the Isla... \n", "4075 9780824521233 In this funny and lighthearted b... \n", "4084 9780826414755 A brilliant idea--short, percept... \n", "4252 9780936197449 A survival guide for parents hel... \n", "4294 9780974607894 This vivid, sensitive tale of ad... \n", "4421 9781401211349 Presents a practical guide that ... \n", "4560 9781551114125 Published in 1749, the story of ... \n", "4596 9781560067849 Discusses the young adult book \"... \n", "4607 9781561796779 The authors maintain that childr... \n", "4713 9781576839546 Cline and Fay offer advice to he... \n", "4770 9781582433226 A witty, beleaguered teenager wh... \n", "4904 9781594481574 A spiritual guide by the author ... \n", "5189 9788122200850 This book is the story of a youn... \n", "5193 9788173031014 This book tells the tale of a ma... " ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "retrieve_semantic_recommendations(\"A book to inspire young people\")\n" ] }, { "cell_type": "code", "execution_count": null, "id": "e95d3145-2e9e-4c8f-92b5-2520c9e07107", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "a70449ab-734c-4c62-981d-02b6af1a15df", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.9" } }, "nbformat": 4, "nbformat_minor": 5 }