-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.sql
More file actions
178 lines (152 loc) · 843 KB
/
type.sql
File metadata and controls
178 lines (152 loc) · 843 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
-- MySQL dump 10.13 Distrib 8.0.40, for Linux (x86_64)
--
-- Host: localhost Database: type
-- ------------------------------------------------------
-- Server version 8.0.40-0ubuntu0.22.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `type`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `type` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `type`;
--
-- Table structure for table `book`
--
DROP TABLE IF EXISTS `book`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `book` (
`book_id` bigint unsigned NOT NULL,
`book_name` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`book_name_short` char(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`book_name_full` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`book_name_chs` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`volume_name` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`section_name` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`chapter_name` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`done` tinyint DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book`
--
LOCK TABLES `book` WRITE;
/*!40000 ALTER TABLE `book` DISABLE KEYS */;
INSERT INTO `book` VALUES (1,'NewConceptEnglish','NCE','New Concept English','新概念英语','册','单元','课',1),(2,'ShortStoriesForComprehension','SSFC','Short Stories For Comprehension','妙语短篇','册','单元','课',1);
/*!40000 ALTER TABLE `book` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `book_metric`
--
DROP TABLE IF EXISTS `book_metric`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `book_metric` (
`book` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`volume` char(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`chapter_count` int unsigned DEFAULT NULL,
PRIMARY KEY (`book`,`volume`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book_metric`
--
LOCK TABLES `book_metric` WRITE;
/*!40000 ALTER TABLE `book_metric` DISABLE KEYS */;
INSERT INTO `book_metric` VALUES ('NewConceptEnglish','1',144),('NewConceptEnglish','2',96),('NewConceptEnglish','3',60),('NewConceptEnglish','4',48),('ShortStoriesForComprehension','A1',15),('ShortStoriesForComprehension','A2',15),('ShortStoriesForComprehension','A3',15),('ShortStoriesForComprehension','B1',15),('ShortStoriesForComprehension','B2',15),('ShortStoriesForComprehension','B3',15),('ShortStoriesForComprehension','C1',15),('ShortStoriesForComprehension','C2',15),('ShortStoriesForComprehension','C3',15),('ShortStoriesForComprehension','D1',20),('ShortStoriesForComprehension','D2',20),('ShortStoriesForComprehension','D3',20);
/*!40000 ALTER TABLE `book_metric` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `content`
--
DROP TABLE IF EXISTS `content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `content` (
`chapter_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`chapter` smallint unsigned DEFAULT NULL,
`chapter_title` char(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`chapter_content` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`section_id` int unsigned DEFAULT NULL,
PRIMARY KEY (`chapter_id`)
) ENGINE=InnoDB AUTO_INCREMENT=544 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `content`
--
LOCK TABLES `content` WRITE;
/*!40000 ALTER TABLE `content` DISABLE KEYS */;
INSERT INTO `content` VALUES (1,1,'Excuse me!','Excuse me!\r\nYes?\r\nIs this your handbag?\r\nPardon?\r\nIs this your handbag?\r\nYes, it is.\r\nThank you very much.',1),(2,2,'Is this your ...?','Is this your pen?\r\nYes, it is.\r\nIs this your pencil?\r\nNo, it isn\'t.\r\nIs this your book?\r\nYes, it is.\r\nIs this your watch?\r\nNo, it isn\'t.\r\nIs this your coat?\r\nYes, it is.\r\nIs this your dress?\r\nNo, it isn\'t.\r\nIs this your skirt?\r\nYes, it is.\r\nIs this your shirt?\r\nNo, it isn\'t.\r\nIs this your car?\r\nYes, it is.\r\nIs this your house?\r\nNo, it isn\'t.',1),(3,3,'Sorry, sir.','My coat and my umbrella please.\r\nHere is my ticket.\r\nThank you, sir.\r\nNumber five.\r\nHere\'s your umbrella and your coat.\r\nThis is not my umbrella.\r\nSorry, sir.\r\nIs this your umbrella?\r\nNo, it isn\'t.\r\nIs this it?\r\nYes, it is.\r\nThank you very much.',1),(4,4,'Is this your ...?','Is this your pen?\r\nYes, it is.\r\nIs this your pencil?\r\nNo, it isn\'t.\r\nIs this your book?\r\nYes, it is.\r\nIs this your watch?\r\nNo, it isn\'t.\r\nIs this your coat?\r\nYes, it is.\r\nIs this your dress?\r\nNo, it isn\'t.\r\nIs this your skirt?\r\nYes, it is.\r\nIs this your shirt?\r\nNo, it isn\'t.\r\nIs this your car?\r\nYes, it is.\r\nIs this your house?\r\nNo, it isn\'t.\r\nIs this your suit?\r\nYes, it is.\r\nIs this your school?\r\nNo, it isn\'t.\r\nIs this your teacher?\r\nYes, it is.\r\nIs this your son?\r\nNo, it isn\'t.\r\nIs this your daughter?\r\nYes, it is.',1),(5,5,'Nice to meet you.','MR. BLAKE: Good morning.\r\nSTUDENT: Good morning. Mr. Blake.\r\nMR. BLAKE: This is Miss Sophie Dupont. Sophie is a new student. She is French. Sophie, this is Hans. He is German.\r\nHANS: Nice to meet you.\r\nMR. BLAKE: And this is Naoko. She\'s Japanese.\r\nNAOKO: Nice to meet you.\r\nMR. BLAKE: And this is Chang-woo. He\'s Korean.\r\nCHANG-WOO: Nice to meet you.\r\nMR. BLAKE: And this is Luming. He\'s Chinese.\r\nLUMING: Nice to meet you.\r\nMR. BLAKE: And this is Xiaohui. She\'s Chinese, to.\r\nXIAOHUI: Nice to meet you.',1),(6,6,'What make is it?','It\'s a Volvo. It is from Sweden. It is Swedish.\r\nIt\'s a Peugeot. It is from France. It is French.\r\nIt\'s a Mercedes. It is from Germany. It is German.\r\nIt\'s a Toyota. It is from Japan. It is Japanese.\r\nIt\'s a Daewoo. It is from Korea. It is Korean.\r\nIt\'s a Mini. It is from England. It is English.\r\nIt\'s a Ford. It is from America. It is American.\r\nIt\'s a Fiat. It is from Italy. It is Italian.',1),(7,7,'Are you a teacher?','ROBERT: I am a new student. My name\'s Robert.\r\nSOPHIE: Nice to meet you. My name\'s Sophie.\r\nROBERT: Are you French?\r\nSOPHIE: Yes, I am. Are you French, too?\r\nROBERT: No, I am not.\r\nSOPHIE: What nationality are you?\r\nROBERT: I\'m Italian. Are you a teacher?\r\nSOPHIE: No, I\'m not.\r\nROBERT: What\'s your job?\r\nSOPHIE: I\'m keyboard operator. What\'s your job?\r\nROBERT: I\'m an engineer.',1),(8,8,'What\'s your job?','What\'s your job?\r\nI\'m a policeman.\r\nWhat\'s her job?\r\nShe\'s a policewoman.\r\nWhat\'s your job?\r\nI\'m a taxi driver.\r\nWhat\'s her job?\r\nShe\'s an air hostess.\r\nWhat\'s your job?\r\nI\'m a postman.\r\nWhat\'s her job?\r\nShe\'s a nurse.\r\nWhat\'s your job?\r\nI\'m a mechanic.\r\nWhat\'s his job?\r\nHe\'s a hairdresser.\r\nWhat\'s your job?\r\nI\'m a housewife.\r\nWhat\'s his job?\r\nHe\'s a milkman.',1),(9,9,'How are you today?','STEVEN: Hello, Helen.\r\nHELEN: Hi, Steven.\r\nSTEVEN: How are you today?\r\nHELEN: I\'m very well, thank you. And you?\r\nSTEVEN: I\'m fine, thanks. How is Tony?\r\nHELEN: He\'s fine, thanks. How\'s Emma?\r\nSTEVEN: She\'s very well, too, Helen. Goodbye, Helen. Nice to meet you.\r\nHELEN: Nice to meet you, too, Steven. Goodbye.',1),(10,10,'Look at ...','Look at that man. He\'s fat.\r\nLook at that woman. She\'s thin.\r\nLook at that policeman. He\'s tall.\r\nLook at that policewoman. She\'s short.\r\nLook at that mechanic. He\'s dirty.\r\nLook at that nurse. She\'s clean.\r\nLook at Steven. He\'s hot.\r\nLook at Emma. She\'s cold.\r\nLook at that milkman. He\'s old.\r\nLook at that air hostess. She\'s young.\r\nLook at that hairdresser. He\'s busy.\r\nLook at that housewife. She\'s lazy.',1),(11,11,'Is this your shirt?','TEACHER: Whose shirt is that? Is this your shirt, Dave?\r\nDAVE: No, sir. It\'s not my shirt. This is my shirt. My shirt\'s blue.\r\nTEACHER: Is this shirt Tim\'s?\r\nDAVE: Perhaps it is, sir. Tim\'s shirt\'s white.\r\nTEACHER: Tim!\r\nTIM: Yes, sir?\r\nTEACHER: Is this your shirt?\r\nTIM: Yes, sir.\r\nTEACHER: Here you are. Catch!\r\nTIM: Thank you, sir.',1),(12,12,'Whose is this/that?\r\nThis/That is my/your/his/her ...','Whose is this handbag? Is it Paul\'s?\r\nNo, it isn\'t. It\'s Stella\'s.\r\nWhose is that car? Is it Sophie\'s?\r\nNo, it isn\'t. It\'s Paul\'s.\r\nWhose is this coat? Is it Steven\'s?\r\nNo, it isn\'t. It\'s Sophie\'s.\r\nWhose is that umbrella? Is it my son\'s?\r\nNo, it isn\'t. It\'s Steven\'s.\r\nWhose is this pen? Is it my daughter\'s?\r\nNo, it isn\'t. It\'s my son\'s.\r\nWhose is that dress? Is it my father\'s?\r\nNo, it isn\'t. It\'s my daughter\'s.\r\nWhose is this suit? Is it my mother\'s?\r\nNo, it isn\'t. It\'s my father\'s.\r\nWhose is that skirt? Is it my sister\'s.\r\nNo, it isn\'t. It\'s my mother\'s.\r\nWhose is this blouse? Is it my brother\'s?\r\nNo, it isn\'t. It\'s my sister\'s.\r\nWhose is that tie? Is it Stella\'s?\r\nNo, it isn\'t. It\'s my brother\'s.',1),(13,13,'A new dress','LOUISE: What colour\'s your new dress?\r\nANNA: It\'s green. Come upstairs and see it.\r\nLOUISE: Thank you.\r\nANNA: Look! Here it is!\r\nLOUISE: That\'s a nice dress. It\'s very smart.\r\nANNA: My hat\'s new, too.\r\nLOUISE: What colour is it?\r\nANNA: It\'s the same colour. It\'s green, too.\r\nLOUISE: That is a lovely hat!',1),(14,14,'What colour\'s your ...?','What colour is your umbrella?\r\nIt is black.\r\nWhat colour is your car?\r\nIt is blue.\r\nWhat colour is your shirt?\r\nIt is white.\r\nWhat colour is your coat?\r\nIt is grey.\r\nWhat colour is your case?\r\nIt is brown.\r\nWhat colour is your carpet?\r\nIt is red.\r\nWhat colour is your blouse?\r\nIt is yellow.\r\nWhat colour is your tie?\r\nIt is orange.\r\nWhat colour is your hat?\r\nIt is grey and black.\r\nWhat colour is your dog?\r\nIt is brown and white.',1),(15,15,'Your passport, please.','CUSTOM OFFICER: Are you Swedish?\r\nGIRLS: No, we are not. We are Danish.\r\nCUSTOM OFFICER: Are your friends Danish, too?\r\nGIRLS: No, they aren\'t. They are Norwegian.\r\nCUSTOM OFFICER: Your passports, please.\r\nGIRLS: Here they are.\r\nCUSTOM OFFICER: Are these your cases?\r\nGIRLS: No, they aren\'t. Our cases are brown. Here they are.\r\nCUSTOM OFFICER: Are you tourists?\r\nGIRLS: Yes, we are.\r\nCUSTOM OFFICER: Are your friends tourists too?\r\nGIRLS: Yes, they are.\r\nCUSTOM OFFICER: That\'s fine.\r\nGIRLS: Thank you very much.',1),(16,16,'Are you ...?','Are they Russian?\r\nYes, they are.\r\nAre they English?\r\nYes, they are.\r\nAre they American?\r\nYes, they are.\r\nAre they Dutch?\r\nYes, they are.\r\nAre these your books?\r\nNo, they aren\'t. Our books are red.\r\nWhat colour are your shirts?\r\nOur shirts are white.\r\nAre these your coats?\r\nNo, they aren\'t. Our coats are grey.\r\nWhat colour are your tickets?\r\nOur tickets are yellow.\r\nAre these your suits?\r\nNo, they aren\'t. Our suits are blue.\r\nWhat colour are your hats?\r\nOur hats are black and grey.\r\nAre these your passports?\r\nNo, they aren\'t. Our passports are green.\r\nWhat colour are your dogs?\r\nOur dogs are brown and white.\r\nAre these your pens?\r\nNo, they aren\'t. Our pens are blue.\r\nWhat colour are your cars.\r\nOur cars are red.\r\nAre these your dresses?\r\nNo, they aren\'t. Our dresses are green.\r\nWhat colour are your blouses?\r\nOur blouses are yellow.',1),(17,17,'How do you do?','MR. JACKSON: Come and meet our employees, Mr. Richards.\r\nMR. RICHARDS: Thank you, Mr. Jackson.\r\nMR. JACKSON: This is Nicola Grey, and this is Clair Taylor.\r\nMR. RICHARDS: How do you do? Those women are very hard-working. What are their jobs?\r\nMR. JACKSON: They\'re keyboard operators. This is Michael Baker, and this is Jeremy Short.\r\nMR. RICHARDS: How do you do? They aren\'t very busy! What are their jobs?\r\nMR. JACKSON: They\'re sales reps. They\'re very lazy.\r\nMR. RICHARDS: Who is this young man?\r\nMR. JACKSON: This is Jim. He\'s our office assistant.',1),(18,18,'What are their jobs?','What are their jobs?\r\nThey are sales reps.\r\nWhat are their jobs?\r\nThey are keyboard operators.\r\nWhat are their jobs?\r\nThey are mechanics.\r\nWhat are their jobs?\r\nThey are engineers.\r\nWhat are their jobs?\r\nThey are hairdressers.\r\nWhat are their jobs?\r\nThey are teachers.\r\nWhat are their jobs?\r\nThey are customs officers.\r\nWhat are their jobs?\r\nThey are taxi drivers.\r\nWhat are their jobs?\r\nThey are nurses.\r\nWhat are their jobs?\r\nThey are air hostesses.\r\nWhat are their jobs?\r\nThey are housewives.\r\nWhat are their jobs?\r\nThey are milkmen.\r\nWhat are their jobs?\r\nThey are postmen.\r\nWhat are their jobs?\r\nThey are policemen.\r\nWhat are their jobs?\r\nThey are policewomen.',1),(19,19,'Tired and thirsty','MOTHER: What\'s the matter, children?\r\nGIRL: We\'re tired ...\r\nBOY: ... and thirsty, Mum.\r\nMOTHER: Sit down here. Are you all right now?\r\nBOY: No, we aren\'t.\r\nMOTHER: Look! There\'s an ice cream man. Two ice creams please. Here you are, children.\r\nCHILDREN: Thanks, Mum.\r\nGIRL: These ice creams are nice.\r\nMOTHER: Are you all right now?\r\nCHILDREN: Yes, we are. thank you!',1),(20,20,'Look at them!','Look at my shoes! They\'re clean.\r\nLook at your hands! They\'re dirty.\r\nLook at these policemen! They\'re hot.\r\nLook at these women! They\'re cold.\r\nLook at these hairdressers! They\'re fat.\r\nLook at these barbers! They\'re thin.\r\nLook at my shoes! They\'re big.\r\nLook at my shoes! They\'re small.\r\nLook at these shops! They\'re open.\r\nLook at these shops! They\'re shut.\r\nLook at these cases! They\'re light.\r\nLook at these cases! They\'re haevy.\r\nLook at the couple! They\'re old.\r\nLook at the children! They\'re young.\r\nLook at these hats! They\'re old.\r\nLook at these hats! They\'re new.\r\nLook at these children! They\'re short.\r\nLook at these policemen! They\'re tall.\r\nLook at my trousers! They\'re short.\r\nLook at my trousers! They\'re long.',1),(21,21,'Which book?','MAN: Give me a book please, Jane.\r\nWOMAN: Which book? This one?\r\nMAN: No, not that one. The red one.\r\nWOMAN: This one?\r\nMAN: Yes, please.\r\nWOMAN: Here you are.\r\nMAN: Thank you.',1),(22,22,'Give me/him/her/us/them a ...\r\nWhich one?','A: Give me a cup please.\r\nB: Which one? This dirty one?\r\nA: No, not this dirty one. That clean one\r\nB: Here you are.\r\nA: Thank you.\r\nA: Give me a glass please.\r\nB: Which one? This empty one?\r\nA: No, not this empty one. That full one\r\nB: Here you are.\r\nA: Thank you.\r\nA: Give me a bottle please.\r\nB: Which one? This small one?\r\nA: No, not this small one. That large one\r\nB: Here you are.\r\nA: Thank you.\r\nA: Give me a box please.\r\nB: Which one? This big one?\r\nA: No, not this big one. That little one\r\nB: Here you are.\r\nA: Thank you.\r\nA: Give me a tin please.\r\nB: Which one? This old one?\r\nA: No, not this old one. That new one.\r\nB: Here you are.\r\nA: Thank you.\r\nA: Give me a knife please.\r\nB: Which one? This sharp one?\r\nA: No, not this sharp one. That blunt one.\r\nB: Here you are.\r\nA: Thank you.\r\nA: Give me a spoon please.\r\nB: Which one? This old one?\r\nA: No, not this old one. That new one\r\nB: Here you are.\r\nA: Thank you.\r\nA: Give me a fork please.\r\nB: Which one? This large one?\r\nA: No, not this large one. That small one\r\nB: Here you are.\r\nA: Thank you.',1),(23,23,'Which glasses?','MAN: Give me some glasses please, Jane.\r\nWOMAN: Which glasses? These glasses?\r\nMAN: No, not those. The ones on the shelf.\r\nWOMAN: These?\r\nMAN: Yes, please.\r\nWOMAN: Here you are.\r\nMAN: Thanks.',1),(24,24,'Give me/him/her/us/them some ...\r\nWhich ones?','A: Give me some pens.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the desk.\r\nA: Give me some ties.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the chair.\r\nA: Give me some spoons.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the table.\r\nA: Give me some plates.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the cupboard.\r\nA: Give me some cigarettes.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the television.\r\nA: Give me some boxes.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the floor.\r\nA: Give me some bottles.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the dressing table.\r\nA: Give me some books.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the shelf.\r\nA: Give me some magazines.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the bed.\r\nA: Give me some newspapers.\r\nB: Which ones? These?\r\nA: No, not those. The ones on the stereo.',1),(25,25,'Mrs. Smith\'s kitchen','Mrs. Smith\'s kitchen is small.\r\nThere is a refrigerator in the kitchen.\r\nThe refrigerator is white.\r\nIt is on the right.\r\nThere is an electric cooker in the kitchen.\r\nThe cooker is blue.\r\nIt is on the left.\r\nThere is a table in the middle of the room.\r\nThere is a bottle on the table.\r\nThe bottle is emplty.\r\nThere is a cup on the table, too.\r\nThe cup is clean.',1),(26,26,'Where is it?','A: Is there a clean cup on the floor?\r\nB: No, there isn\'t one on the floor.\r\nA: Where is it?\r\nB: It is on the table.\r\nA: Is there a large box on the chair?\r\nB: No, there isn\'t one on the chair.\r\nA: Where is it?\r\nB: It is on the floor.\r\nA: Is there an empty cup on the table?\r\nB: No, there isn\'t one on the table.\r\nA: Where is it?\r\nB: It is in the cupboard.\r\nA: Is there a sharp knife in the drawer?\r\nB: No, there isn\'t one in the drawer.\r\nA: Where is it?\r\nB: It is on the plate.\r\nA: Is there a dirty fork in the sink?\r\nB: No, there isn\'t one in the sink.\r\nA: Where is it?\r\nB: It is on the tin.\r\nA: Is there a full on the table?\r\nB: No, there isn\'t one on the table.\r\nA: Where is it?\r\nB: It is in the refrigerator.\r\nA: Is there a blunt pencil in the pencil-case?\r\nB: No, there isn\'t one in the pencil-case.\r\nA: Where is it?\r\nB: It is on the desk.\r\nA: Is there a small spoon in the dish?\r\nB: No, there isn\'t one in the dish.\r\nA: Where is it?\r\nB: It is in the cup.',1),(27,27,'Mrs. Smith\'s living room','Mrs. Smith\'s living room is large.\r\nThere is a television in the room.\r\nThe television is near the window.\r\nThere are some magazines on the television.\r\nThere is a table in the room.\r\nThere are some newspapers on the table.\r\nThere are some armchairs in the room.\r\nThe armchairs are near the table.\r\nThere is a stereo in the room.\r\nThe stereo is near the door.\r\nThere are some books on the stereo.\r\nThere are some pictures in the room.\r\nThe pictures are on the wall.',1),(28,28,'Where are they?','A: Give me some cigarettes.\r\nB: Where are they?\r\nA: They\'re on the table, near that box.\r\nA: Give her some clean plates.\r\nB: Where are they?\r\nA: They\'re on the cooker.\r\nA: Give him those trousers.\r\nB: Where are they?\r\nA: They are on the bed, near that shirt.\r\nA: Give me some empty bottles.\r\nB: Where are they?\r\nA: They are in the refrigerator.\r\nA: Give him those shoes.\r\nB: Where are they?\r\nA: They\'re on the floor, near the bed.\r\nA: Give them some knives.\r\nB: Where are they?\r\nA: They\'re on the table, in that box.\r\nA: Give her some forks.\r\nB: Where are they?\r\nA: They\'re on the shelf, near those spoons.\r\nA: Give him some bottles.\r\nB: Where are they?\r\nA: They\'re on the cupboard, near those tins.\r\nA: Give us the tickets.\r\nB: Where are they?\r\nA: They\'re on the shelf, in that handbag.\r\nA: Give them some glasses.\r\nB: Where are they?\r\nA: They\'re on the television, near those bottles.',1),(29,29,'Come in, Amy.','MRS. JONES: Come in, Amy. Shut the door, please. This room\'s very untidy.\r\nAMY: What must I do, Mrs, Jones?\r\nMRS. JONES: Open the window the air the room. Then put these clothes in the wardrobe. Then make the bed. Dust the dressing table. Then sweep the floor.',1),(30,30,'What must I do?','Open your desk.\r\nShut your handbag.\r\nPut on your blouse.\r\nTake off your suit.\r\nTurn on the light.\r\nTurn off the radio.\r\nSweep the floor.\r\nClean the window.\r\nDust the sideboard.\r\nEmpty the box.\r\nRead this newspaper.\r\nSharpen these pencils.',1),(31,31,'Where\'s Sally?','JEAN: Where\'s Sally, Jack?\r\nJACK: She\'s in the garden, Jean.\r\nJEAN: What\'s she doing?\r\nJACK: She\'s sitting under the tree.\r\nJEAN: Is Tim in the garden, too?\r\nJACK: Yes, he is. He\'s climbing the tree.\r\nJEAN: I beg your pardon? Who\'s climbing the tree?\r\nJACK: Tim is.\r\nJEAN: What about the dog?\r\nJACK: The dog\'s in the garden, too. It\'s running across the grass. It\'s running after a cat.',1),(32,32,'What\'s he/she/it doing?','A: Is Nicola emptying a basket?\r\nB: No, she isn\'t emptying a basket.\r\nA: What is she doing?\r\nB: She\'s typing a letter.\r\nA: What is Mr. Richards doing?\r\nB: He\'s opening the window.\r\nA: What is your other doing?\r\nB: She\'s making the bed.\r\nA: What is Sally doing?\r\nB: She is shutting the door.\r\nA: What is the dog doing?\r\nB: It is eating a bone.\r\nA: Is your sister reading a magazine?\r\nB: No, she isn\'t reading a magazing.\r\nA: What is she doing?\r\nB: She\'s looking at a picture.\r\nA: Is Jack cleaning his teeth?\r\nB: No, he isn\'t cleaning his teeth.\r\nA: What is he doing?\r\nB: He is reading a magazine.\r\nA: Is Emma dusting the dressing table?\r\nB: No, she isn\'t dusting the dressing table.\r\nA: She is cooking a meal.\r\nA: What is the cat doing?\r\nB: It is drinking its milk.\r\nA: What is Amy doing?\r\nB: She is sweeping the floor.\r\nA: Is Tim turning on the light?\r\nB: No, he isn\'t turning on the light.\r\nA: What is he doing?\r\nB: He is sharpening a pencil.\r\nA: What is the girl doing?\r\nB: She is turning off the tap.\r\nA: What is the boy doing?\r\nB: He is putting on his shirt.\r\nA: What is Mrs. Jones doing?\r\nB: She is taking off her coat.',1),(33,33,'A fine day','It is a fine day today.\r\nThere are some clouds in the sky,\r\nbut the sun is shining.\r\nMr. Jones is with his family.\r\nThey are walking over the bridge.\r\nThere are some boats on the river.\r\nMr. Jones and his wife are looking at them.\r\nSally is looking at a big ship.\r\nThe ship is going under the bridge.\r\nTim is looking at an aeroplane.\r\nThe aeroplane is flying over the river.',1),(34,34,'What are they doing?','A: What are they doing? Are they washing dishes?\r\nB: No, they aren\'t washing dishes. they\'re cooking a meal.\r\nA: What are the children doing?\r\nB: They\'re sleeping.\r\nA: What are the men doing?\r\nB: They\'re shaving.\r\nA: What are the children doing?\r\nB: They\'re crying.\r\nA: What are the dogs doing?\r\nB: They\'re eating.\r\nA: What are the children doing?\r\nB: They are typing.\r\nA: What are the children doing?\r\nB: They\'re doing homework.\r\nA: What are the girls doing?\r\nB: They are washing the dishes.\r\nA: What are they doing?\r\nB: They\'re walking on a bridge.\r\nA: What are they doing? Are they flying under the bridge?\r\nB: No, they aren\'t flying under the bridge. They\'re flying over the river.\r\nA: What are they doing? Are they crossing the road?\r\nB: No, they\'re not crossing the road. They\'re waiting for a bus.\r\nA: What are they doing? Are they jumping over a hedge?\r\nB: No, they aren\'t jumping over a hedge. They\'re jumping over a wall.',1),(35,35,'Our village','This is a photograph of our village.\r\nOur village is in a valley.\r\nIt is between two hills.\r\nThe village is on a river.\r\nHere is another photograph of the village.\r\nMy wife and I are walking\r\nalong the banks of the river.\r\nWe are on the left.\r\nThere is a boy in the water.\r\nHe is swimming across the river.\r\nHere is another photograph.\r\nThis is the school building.\r\nIt is beside a park.\r\nThe park is on the right.\r\nSome children are coming out of the building.\r\nSome of them are going to the park.',1),(36,36,'Where ...?','A: Where is the man going?\r\nB: He\'s going into the shop.\r\nA: Where is the woman going?\r\nB: She is going out of the bookstore.\r\nA: What is the boy doing?\r\nB: He\'s sitting beside his mother.\r\nA: What are they doing?\r\nB: They\'re walking across the road.\r\nA: Where are the cats running?\r\nB: They\'re running along the wall.\r\nA: Where are the children jumping?\r\nB: They\'re jumping off the tree.\r\nA: Where\'s the man walking?\r\nB: He is walking between two policemen.\r\nA: Where is Sally sitting?\r\nB: She is sitting beside a tree.\r\nA: Where is the plane flying?\r\nB: It is flying under the bridge.\r\nA: Where is the plane flying?\r\nB: It is flying over the river.\r\nA: Where are the family sitting?\r\nB: They\'re sitting on the grass.\r\nA: Where are they reading?\r\nB: They\'re reading in the living room.',1),(37,37,'Making a bookcase','DAN: You\'re working hard, George. What are you doing?\r\nGEORGE: I\'m making a bookcase. Give me that hammer please, Dan.\r\nDAN: Which hammer? This one?\r\nGEORGE: No, not that one. The big one.\r\nDAN: Here you are.\r\nGEORGE: Thanks, Dan.\r\nDAN: What are you going to do now, George?\r\nGEORGE: I\'m going to paint it.\r\nDAN: What colour are you going to pain it?\r\nGEORGE: I\'m going to paint it pink.\r\nDAN: Pink!\r\nGEORGE: This bookcase isn\'t for me. It\'s for my daughter, Susan. Pink\'s her favourite colour.',1),(38,38,'What are you going to do?\r\nWhat are you doing now?','A: What are you going to do?\r\nB: I am going to shave.\r\nA: What are you doing now?\r\nB: Now I\'m shaving.\r\nA: What are you going to do?\r\nB: I am going to wait for a bus.\r\nA: What are you doing now?\r\nB: Now I\'m waiting for a bus.\r\nA: What are you going to do?\r\nB: We\'re going to do our homework.\r\nA: What are you doing now?\r\nB: Now we\'re doing our homework.\r\nA: What are you going to do?\r\nB: I am going to paint this bookcase.\r\nA: What are you doing now?\r\nB: Now I\'m painting this bookcase.\r\nA: What are you going to do?\r\nB: We\'re going to listen to the stereo.\r\nA: What are you doing now?\r\nB: Now we\'re listening to the stereo.\r\nA: What are you going to do?\r\nB: I am going to wash the dishes.\r\nA: What are you doing now?\r\nB: Now we\'re washing the dishes.',1),(39,39,'Don\'t drop it!','SAM: What are you going to do with that vase, Penny?\r\nPENNY: I\'m going to put it on this table, Sam.\r\nSAM: Don\'t do that. Give it to me.\r\nPENNY: What are you going to do with it?\r\nSAM: I\'m going to put it here, in front of the window.\r\nPENNY: Be careful! Don\'t drop it! Don\'t put it there, Sam. Put it here, on this shelf.\r\nSAM: There we are! It\'s a lovely vase.\r\nPENNY: Those flowers are lovely, too.',1),(40,40,'What are you going to do?\r\nI\'m going to ...','A: Are you going to put on the coat?\r\nB: Yes, I\'m going to put it on.\r\nA: Are you going to take off your shirt?\r\nB: Yes, I\'m going to take it off.\r\nA: Are you going to turn on the television?\r\nB: Yes, I\'m going to turn it on.\r\nA: Are you going to turn down the radio?\r\nB: Yes, I\'m going to turn it down.\r\nGive the skirt to my daughter. Give it to her.\r\nGive the flowers to my grandmother. Give them to her.\r\nGive the newspapers to my father. Give them to him.\r\nGive the picture to my mother. Give it to her.\r\nGive the ice creams to the children. Give them to them.\r\nGive the flowers to my wife. Give them to her.\r\nPost the letter to my grandfather. Post it to him.\r\nSend the magazines to my sister. Send them to her.',1),(41,41,'Penny\'s bag','SAN: Is that bag heavy, Penny?\r\nPENNY: Not very.\r\nSAN: Here! Put it on this chair. What\'s in it?\r\nPENNY: A piece of cheese. A loaf of bread. A bar of soap. A bar of Chocolate. A bottle of milk. A pound of sugar. Half a pound of coffee. A quarter of pound of tea. And a tin of tobacco.\r\nSAN: Is that tin of tobacco for me?\r\nPENNY: Well, it\'s certainly not for me!',1),(42,42,'Is there a ... in/on that ...?\r\nIs there any ... in/on that ...?','A: Is there a passport here?\r\nB: Yes, there is one. There is a passport on the table.\r\nA: Is there any milk here?\r\nB: Yes, there is some in the bottle.\r\nA: Is there a spoon here?\r\nB: Yes, there is one. There\'s a spoon on the plate.\r\nA: Is there a tie here?\r\nB: Yes, there is one. There is a tie on the chair.\r\nA: Is there any bread here?\r\nB: Yes, there is some. There\'s a loaf of bread on the table.\r\nA: Is there a hammer here?\r\nB: Yes, there is one. There\'s a hammer on the sideboard.\r\nA: Is there any tea here?\r\nB: Yes, there is some. There\'s some tea in the tin.\r\nA: Is there a pot on the cooker?\r\nB: Yes, there is. There\'s a pot on the cooker.\r\nA: Is there a suit in the wardrobe?\r\nB: Yes, there is. There\'s a suit in the wardrobe.\r\nA: Is there any tobacco?\r\nB: Yes, there is. There\'re to tins of tobacco on the table.\r\nA: Is there any chocolate?\r\nB: Yes, there is. There\'s some chocolate on the cupboard.\r\nA: Is there any cheese?\r\nB: Yes, there is. There\'s some cheese in the dish.\r\nA: Are there any newspapers?\r\nB: Yes, there are. There\'re some newspapers on the television.\r\nA: Is there any car on the bridge?\r\nB: Yes, there is one on the bridge.\r\nA: Is there any soap?\r\nB: Yes, there is. There\'s a bar of soap on the dressing table.\r\nA: Is there any birds on the tree?\r\nB: Yes, there is one bird on the tree.',1),(43,43,'Hurry up!','PENNY: Can you make the tea, Sam?\r\nSAM: Yes, of course I can, Penny. Is there any water in this kettle?\r\nPENNY: Yes, there is.\r\nSAM: Where\'s the tea?\r\nPENNY: It\'s over there, behind the teapot. Can you see it?\r\nSAM: I can see the teapot, but I can\'t see the tea.\r\nPENNY: There it is! It\'s in front of you!\r\nSAM: Ah yes, I can see it now.\r\nSAM: Where are the cups?\r\nPENNY: There are some in the cupboard. Can you find them?\r\nSAM: Yes. Here they are.\r\nPENNY: Hurry up, Sam! The kettle\'s boiling!',1),(44,44,'Is there any ...? Are there any?','A: Is there any bread?\r\nB: Yes, there is. There are two loaves of bread on the table.\r\nA: Are there any hammers?\r\nB: Yes, there are two behind that box.\r\nA: Is there any milk in front of the door?\r\nB: Yes, there are two bottles of milk there.\r\nA: Is there any soap on the cupboard?\r\nB: Yes, there are three bars of soap.\r\nA: Are there any newspapers behind that vase?\r\nB: Yes, there are some.\r\nA: Is there any water in those glasses?\r\nB: Yes, there is some.\r\nA: Is there any tea in those cups?\r\nB: Yes, there is some.\r\nA: Are there any cups in front of that kettle?\r\nB: Yes, there are two cups.\r\nA: Is there any chocolate behind taht book?\r\nB: Yes, there is one or two bars of chocolate.\r\nA: Are there any teapots in the cupboard?\r\nB: Yes, there are two.\r\nA: Are there any cars in front of that building?\r\nB: Yes, there are two cars there.\r\nA: Is there any coffee?\r\nB: Yes, there is. There are two bags of coffee on the table.',1),(45,45,'The boss\'s letter','THE BOSS: Can you come here a minute please, Bob?\r\nBOB: Yes, sir?\r\nTHE BOSS: Where\'s Pamela?\r\nBOB: She\'s next door. She\'s in her office, sir.\r\nTHE BOSS: Can she type this letter for me? Ask her please.\r\nBOB: Yes, sir. Can you type this letter for the boss please, Pamela?\r\nPAMELA: Yes, of course I can.\r\nBOB: Here you are.\r\nPAMELA: Thank you, Bob. Bob!\r\nBOB: Yes? What\'s the matter.\r\nPAMELA: I can\'t type this letter.\r\nPAMELA: I can\'t read it! The boss\'s handwriting is terrible!',1),(46,46,'Can you ...?','A: Can you put your hat on?\r\nB: Yes, I can put my hat on, but I can\'t put my coat on.\r\nA: Can you see that aeroplane?\r\nB: Yes, I can see that aeroplane, but I can\'t see the bird.\r\nA: Can you paint this bookcase?\r\nB: Yes, I can paint my bookcase, but I can\'t paint this room.\r\nA: can you lift that chair?\r\nB: Yes, I can lift taht chair, but I can\'t lift this table.\r\nA: Can you read this book?\r\nB: Yes, I can read this book, but I can\'t read that magazine.\r\nA: Can you jump off this box?\r\nB: Yes, I can jump off this box, but I can\'t jump off that wall.\r\nA: Can you make cakes?\r\nB: Yes, I can make cakes, but I can\'t make biscuits.\r\nA: Can you put the vase on the table?\r\nB: Yes, I can put the vase on the table, but I can\'t put it on the shelf.',1),(47,47,'A cup of coffee','CHRISTINE: Do you like coffee, Ann?\r\nANN: Yes, I do.\r\nCHRISTINE: Do you want a cup?\r\nANN: Yes, please, Christine.\r\nCHRISTINE: Do you want any sugar?\r\nANN: Yes, please.\r\nCHRISTINE: Do you want any milk?\r\nANN: No, thank you. I don\'t like milk in my coffee. I like black coffee.\r\nCHRISTINE: Do you like biscuits?\r\nANN: Yes. I do.\r\nCHRISTINE: Do you want one?\r\nANN: Yes, please.',1),(48,48,'Do you like ...? Do you want ...?','A: Do you like eggs?\r\nB: Yes, I do. I like eggs, but I don\'t want one.\r\nA: Do you like butter?\r\nB: Yes, I do. I like butter, but I don\'t want any.\r\nA: Do you like honey?\r\nB: Yes, I do. I like honey, but I don\'t want any.\r\nA: Do you like bananas?\r\nB: Yes, I do. I like bananas, but I don\'t want any.\r\nA: Do you like jam?\r\nB: Yes, I do. I like jam, but I don\'t want any.\r\nA: Do you like oranges?\r\nB: Yes, I do. I like oranges, but I don\'t want one.\r\nA: Do you like ice cream?\r\nB: Yes, I do. I like ice cream, but I don\'t want one.\r\nA: Do you like whisky?\r\nB: Yes, I do. I like whisky, but I don\'t want any.\r\nA: Do you like apples?\r\nB: Yes, I do. I like apples, but I don\'t want any.\r\nA: Do you like wine?\r\nB: Yes, I do. I like wine, but I don\'t want any.\r\nA: Do you like biscuits?\r\nB: Yes, I do. I like biscuits, but I don\'t want one.\r\nA: Do you like beer?\r\nB: Yes, I do. I like beer, but I don\'t want any.',1),(49,49,'At the butcher\'s','BUTCHER: Do you want any meat today, Mrs. Bird?\r\nMRS. BIRD: Yes, please.\r\nBUTCHER: Do you want beef or lamb?\r\nMRS. BIRD: Beef, please.\r\nBUTCHER: This lamb\'s very good.\r\nMRS. BIRD: I like lamb, but my husband doesn\'t.\r\nBUTCHER: What about some steak? This is a nice piece.\r\nMRS. BIRD: Give me that piece, please. And a pound of mince, too.\r\nBUTCHER: Do you want a chicken, Mrs. Bird? They\'re very nice.\r\nMRS. BIRD: No, thank you. My husband likes steak, but he doesn\'t like chicken.\r\nBUTCHER: To tell you the truth, Mrs. Bird, I don\'t like chicken either!',1),(50,50,'He likes ... But he does\'nt like ...','A: Do you like tomatoes?\r\nB: Yes, I do. I like tomatoes, but I don\'t want any.\r\nA: Does she like potatoes?\r\nB: Yes, she does. She likes potatoes, but she doesn\'t want any.\r\nA: Does he like cabbages?\r\nB: Yes, he does. He likes cabbages, but he doesn\'t want any.\r\nA: Does he like lettuce?\r\nB: Yes, he does. He likes lettuce, but he doesn\'t want any.\r\nA: Does she like peas?\r\nB: Yes, she does. She likes lettuce, but she doesn\'t want any.\r\nA: Do you like beans?\r\nB: Yes, I do. I like beans, but I don\'t want any.\r\nA: Do you like beans?\r\nB: Yes, I do. I like beans, but I don\'t want any.\r\nA: Do you like bananas?\r\nB: Yes, I do. I like bananas, but I don\'t want any.\r\nA: Does she like oranges?\r\nB: Yes, she does. She likes oranges, but she doesn\'t want any.',1),(51,51,'A pleasant climate','HANS: Where do you come from?\r\nDIMITRI: I come from Greece.\r\nHANS: What\'s the climate like in your country?\r\nDIMITRI: It\'s very pleasant.\r\nHANS: What\'s the weather like in spring?\r\nDIMITRI: It\'s often windy in March. It\'s always warm in April and May, but it rains sometimes.\r\nHANS: What\'s it like in summer?\r\nDIMITRI: It\'s always hot in June, July and August. The sun shines every day.\r\nHANS: Is it cold or warm in autumn?\r\nDIMITRI: It\'s always warm in September and October. It\'s often cold in November and it rains sometimes.\r\nHANS: Is it very cold in winter?\r\nDIMITRI: It\'s often cold in December, January and February. It snows sometimes.',1),(52,52,'What nationality are they?\r\nWhere do they come from?','A: Do you come from Brazil?\r\nB: No, I\'m from America. I\'m American.\r\nA: Does she come from Italy?\r\nB: No, she comes from Holland. She\'s Dutch.\r\nA: Does he come from Germany?\r\nB: No, he comes from Greece. He\'s Greek.\r\nA: Do they come from Spain?\r\nB: No, they come from Russia. They\'re Russian.',1),(53,53,'An interesting climate','HANS: Where do you come from?\r\nJIM: I come from England.\r\nHANS: What\'s the climate like in your country?\r\nJIM: It\'s mild, but it\'s not always pleasant. The weather\'s often cold in North and windy in the East. It\'s often wet in the West and sometimes warm in the South.\r\nHANS: Which seasons do you like best?\r\nJIM: I like spring and summer. The days are long and the nights are short. The sun rises early and sets late. I don\'t like autumn and winter. The days are short\r\nand the nights are long. The sun rises late and sets early. Our climate is not very good, but it\'s certainly interesting. It\'s our favourite subject of conversation.',1),(54,54,'What nationality are they?\r\nWhere do they come from?','A: Where does he come from? Is he Canadian?\r\nB: Yes, he comes from Canada.\r\nA: Where do they come from? Are they Danish?\r\nB: Yes, they come from Denmark.\r\nA: Where are you from? Are you Nigerian?\r\nB: Yes, we come from Nigeria.',1),(55,55,'The Sawyer family','The Sawyers live at 87 King Street.\r\nIn the morning, Mr. Sawyer goes to work and the children go to school.\r\nMrs. Sawyer stays at home every day. She does the housework.\r\nShe always eats her lunch at noon.\r\nIn the afternoon, she usually sees her friends. They often drink tea together.\r\nIn the evening, the children come home from school. They arrive home early.\r\nMr. Sawyer comes home from work. He arrives home late.\r\nAt night, the children always do their homework. Then they go to bed. Mr. Sawyer usually reads his newspaper, but sometimes he and his wife watch television.',1),(56,56,'What do they usually do?','A: What does she usually do in the morning?\r\nB: She usually makes the bed in the morning.\r\nA: What does he usually do in the morning?\r\nB: He usually shaves in the morning.\r\nA: What do they usually do in the afternoon?\r\nB: They usually go to bed in the afternoon.\r\nA: What do you usually do in the evening?\r\nB: We usually type letters in the evening.\r\nA: What does he usually do at night?\r\nB: He usually reads the newspapers at night.',1),(57,57,'An unusual day','It is eight o\'clock. The children go to school by car every day, but today, they are going to school on foot.\r\nIt is ten o\'clock. Mrs. Sawyer usually stays at home in the morning, but this morning, she is going to the shops.\r\nIt is four o\'clock. In the afternoon, Mrs. Sawyer usually drinks tea in the living room. But this afternoon, she is drinking tea in the garden.\r\nIt is six o\'clock. In the evening, the children usually do their homework, but this evening, they are not doing their homework. At the moment, they are playing in the garden.\r\nIt is nine o\'clock. Mr. Sawyer usually reads his newspaper at night. But he\'s not reading his newspaper tonight. At the moment, he\'s reading an interesting book.',1),(58,58,'What\'s the time?','A: What does he usually do?\r\nB: Well, he usually shaves at seven o\'clock every morning, but today, he is shaving at eight o\'clock.\r\nA: What does she usually do?\r\nB: Well, she usually drinks tea in the morning, but this morning, she is drink a cup of coffee.\r\nA: What do they usually do?\r\nB: Well, they usually play in the garden in the afternoon, but this afternoon, they are swimming in the river.\r\nA: What do you usually do in the evening?\r\nB: I usually cook a meal in the evening, but this evening, I am reading a book on my chair.\r\nA: What do you usually do?\r\nB: Well, we usually watch television at night, but tonight, we are listening to music.',1),(59,59,'A bad cold','LADY: I want some envelopes, please.\r\nSHOP ASSISTANT: Do you want the large size or the small size?\r\nLADY: The large size, please. Do you have any writing paper?\r\nSHOP ASSISTANT: Yes, we do. I don\'t have any small pads. I only have large ones. Do you want a pad?\r\nLADY: Yes, please. And I want some glue.\r\nSHOP ASSISTANT: A bottle of glue.\r\nLADY: And I want a large box of chalk, too.\r\nSHOP ASSISTANT: I only have small boxes. Do you want one?\r\nLADY: No, thank you.\r\nSHOP ASSISTANT: Is that all?\r\nLADY: That\'s all, thank you.\r\nSHOP ASSISTANT: What else do you want?\r\nLADY: I want my change.',1),(60,60,'What\'s the matter with them?','A: Have you any butter?\r\nB: No, I haven\'t any butter, but I have some cheese.\r\nA: Have you any potatoes?\r\nB: No, I haven\'t any potatoes, but I have some tomatoes.\r\nA: Has he any bananas?\r\nB: No, he hasn\'t any bananas, but he has some grapes.\r\nA: Has she any steak?\r\nB: No, she hasn\'t any steak, but she has some mince.\r\nA: Have they any whisky?\r\nB: No, they haven\'t any whisky, but they have some beer.',1),(61,61,'A bad cold','MR. WILLIAMS: Where\'s Jimmy?\r\nMRS. WILLIAMS: He\'s in bed.\r\nMR. WILLIAMS: What\'s the matter with him?\r\nMRS. WILLIAMS: He feels ill.\r\nMR. WILLIAMS: He looks ill.\r\nMRS. WILLIAMS: We must call the doctor.\r\nMR. WILLIAMS: Yes, we must. Can you remember the doctor\'s telephone number?\r\nMRS. WILLIAMS: Yes. It\'s 09754.\r\nDOCTOR: Open your mouth, Jimmy. Show me your tongue. Say, \'Ah\'.\r\nMR. WILLIAMS: What\'s the matter with him, doctor?\r\nDOCTOR: He has a bad cold, Mr. Williams, so he must stay in bed for a week.\r\nMRS. WILLIAMS: That\'s good new for Jimmy.\r\nDOCTOR: Good news? Why?\r\nMR. WILLIAMS: Because he doesn\'t like school!',1),(62,62,'What\'s the matter with them?\r\nWhat must they do?','A: What\'s the matter with her?\r\nB: She has a headache.\r\nA: Well, she had better take an aspirin.\r\nA: What\'s the matter with George?\r\nB: He has an earache.\r\nA: Well he had better see a doctor.\r\nA: What\'s the matter with him?\r\nB: He has a toothache.\r\nA: Well, he had better see a dentist.\r\nA: What\'s the matter with Jane?\r\nB: She jas a stomach ache.\r\nA: Well, she had better take some medicine.\r\nA: What\'s the matter with Sam?\r\nB: He has a temperature.\r\nA: Well, he had better go to bed and have a good rest.\r\nA: What\'s the matter with Dave?\r\nB: He came down with the flu.\r\nA: Well, he had better stay in bed.\r\nA: What\'s the matter with Jummy?\r\nB: He has measles.\r\nA: Well, we had better call the doctor.\r\nA: What\'s the matter with Susan?\r\nB: She has mumps.\r\nA: Well, we had better call the doctor.',1),(63,63,'Thank you, doctor.','DOCTOR: How\'s Jimmy today?\r\nMRS. WILLIAMAS: Better. Thank you, Doctor.\r\nDOCTOR: Can I see him please, Mrs. Williams?\r\nMRS. WILLIAMAS: Certainly, doctor. Come upstairs.\r\nDOCTOR: You look very well, Jimmy. You are better now, but you mustn\'t get up yet. You must stay in bed for another two days. The boy mustn\'t go to school yet, Mr. Williams. And he mustn\'t eat rich food.\r\nMRS. WILLIAMAS: Does he have a temperature, doctor?\r\nDOCTOR: No, he doesn\'t.\r\nMRS. WILLIAMAS: Must he stay in bed?\r\nDOCTOR: Yes. He must remain in bed for another two days. He can get up for about two hours each day, but you must keep the room warm.\r\nDOCTOR: Where\'s Mr. Williams this evening?\r\nMRS. WILLIAMAS: He\'s in bed, doctor. Can you see him please? He has a bad cold, too!',1),(64,64,'Don\'t ...! You mustn\'t ...!','Don\'t take any aspirins. You mustn\'t take any aspirins\r\nDon\'t take this medicine. He mustn\'t take this medicine.\r\nDon\'t call the doctor. She mustn\'t call the doctor.\r\nDon\'t play with matches. He mustn\'t play with matches.\r\nDon\'t talk in the library. They mustn\'t talk in the library.\r\nDon\'t make a noise. We mustn\'t make any noise.\r\nDon\'t drive so quickly. He mustn\'t drive so quickly.\r\nDon\'t lean out of the window. They mustn\'t lean out of the window.\r\nDon\'t break the vase. He mustn\'t break that vase.',1),(65,65,'Not a baby','FATHER: What are you going to do this evening. Jill?\r\nJILL: I\'m going to meet some friends, Dad.\r\nFATHER: You mustn\'t come home late. You must be home at half past ten.\r\nJILL: I can\'t get home so early, Dad! Can I have the key to the front door please?\r\nFATHER: No, you can\'t.\r\nMOTHER: Jill\'s eighteen years old, Tom. She\'s not a baby. Give her the key. She always comes home early.\r\nFATHER: Oh, all right! Here you are. But you mustn\'t come home after a quarter past eleven. Do you hear?\r\nJILL: Yes. Dad. Thanks, Mum.\r\nMOTHER: That\'s all right. Goodbye. Enjoy yourself!\r\nJILL: We always enjoy ourselves, Mum. Bye-bye.',1),(66,66,'What\'s the time?','A: What\'s the time?\r\nB: It\'s one o\'clock\r\nA: What time is it?\r\nB: It\'s a quarter past one.\r\nA: What\'s the time?\r\nB: It\'s half past one.\r\nA: What time is it?\r\nB: It\'s a quarter to two.\r\nA: What\'s the time?\r\nB: It\'s two o\'clock.\r\nA: What time is it?\r\nB: It\'s a quarter after two.\r\nA: What\'s the time?\r\nB: It\'s half past two.\r\nA: What time is it?\r\nB: It\'s a quarter of three.\r\nA: What\'s the time?\r\nB: It\'s three o\'clock.\r\nA: What time is it?\r\nB: It\'s a quarter after three.\r\nA: What\'s the time?\r\nB: It\'s half after three.\r\nA: What time is it?\r\nB: It\'s a quarter of four.\r\nA: When is your birthday?\r\nB: My birthday is on July 18th.\r\nA: How old are you?\r\nB: I\'m 24 years old.\r\nA: Enjoy yourself.\r\nB: I always enjoy myself.',1),(67,67,'The weekend','MRS.JOHNSON: Hello. Where you at the butcher\'s?\r\nMRS.WILLIAMS:Yes. I was. Were you at butcher\'s, too?\r\nMRS.JOHNSON: No, I wasn\'t. I was at the greengrocer\'s. How\'s Jimmy today?\r\nMRS.WILLIAMS:He\'s very well, thank you.\r\nMRS.JOHNSON: Was he absent from school last week?\r\nMRS.WILLIAMS:Yes, he was. He was absent on Monday, Tuesday, Wednesday and Thursday. How are you all keeping?\r\nMRS.JOHNSON: Very well, thank you. We\'re going to spend three days in the country. We\'re going to stay at my mother\'s for the weekend.\r\nMRS.WILLIAMS:Friday, Saturday and Sunday in the country! Aren\'t you lucky!',1),(68,68,'What\'s the time?','A: Where were you on Sunday, January 1st?\r\nB: We were at church on Sunday, January 1st.\r\nA: When were they at school?\r\nB: They were at school on Monday, February 2nd.\r\nA: Where was she on Friday, June 6th?\r\nB: She was at the baker\'s on Friday, June 6th.\r\nA: When was he at the dairy?\r\nB: He was at the dairy on Saturday, July 7th.',1),(69,69,'The car race','There is a car race near our town every year. In 1995, there was a very big race.\r\nThere were hundreds of people there. My wife and I were at the race. Our friends Julie and Jack were there, too. You can see us in the crowd. We are standing on the left.\r\nThere were twenty cars in the race. There were English cars, French cares, German cars, Italian cars, American cars and Japanese cars.\r\nIt was an exciting finish. The winner was Billy Stewart. He was in car number fifteen. Five other cars were just behind him.\r\nOn the way home, my wife said to me, \'Don\'t drive so quickly! You\'re not Billy Stewart!\'',1),(70,70,'When were they there?','A: When were they at the stationer\'s?\r\nB: They were at the stationer\'s on Monday.\r\nA: Where were they on Friday?\r\nB: They were at the grocer\'s on Friday.\r\nA: What month for you in Austria?\r\nB: We were in Austria in August.\r\nA: Where were you in December?\r\nB: We were in Finland in December.\r\nA: When was he at the office?\r\nB: He was at the office on March 23rd.\r\nA: Where was he on June 26th?\r\nB: He was at the tobaccanist\'s on June 26th.',1),(71,71,'He\'s awful!','JANE: What\'s Ron Marston like, Pauline?\r\nPAULINE: He\'s awful! He telephoned me four times Yesterday, and three times the day before yesterday. He telephoned the office yesterday morning and yesterday afternoon. My boss answered the telephone.\r\nJANE: What did your boss say to him?\r\nPAULINE: He said, \'Pauline is typing letters. She can\'t speak to you now!\" Then I arrived home at six o\'clock yesterday evening. He telephoned again. But I didn\'t answer the phone!\r\nJANE: Did he telephone again last night?\r\nPAULINE: Yes, he did. He telephoned at nine o\'clock.\r\nJANE: What did you say to him?\r\nPAULINE: I said, \'This is Pauline\'s mother. Please don\'t telephone my daughter again!\'\r\nJANE: Did he telephone again?\r\nPAULINE: No, he didn\'t!',1),(72,72,'When did you ...?','A: When did she air the room?\r\nB: She aired the room this morning.\r\nA: When did he open the box?\r\nB: He opened the box yesterday evening.\r\nA: When did you arrive home by car?\r\nB: We arrived home the night before last.\r\nA: When did they play in the garden?\r\nB: They played the day before yesterday.\r\nA: When did you shave?\r\nB: I shaved the day before yesterday in the morning.',1),(73,73,'They way to King Street','Last week Mrs. Mills went to London. She does not know London very well, and she lost her way.\r\nSuddenly, she saw a man near a bus stop. \'I can ask him the way.\' she said to herself.\r\n\'Excuse me,\' she said. \'Can you tell me the way to King Street, please?\'\r\nThe man smiled pleasantly. He did not understand English! He spoke German. He was a tourist.\r\nThen he put his hand into pocket, and took out a phrasebook.\r\nHe opened the book and found a phrase. He read the phrase slowly. \'I am sorry,\' he said. \'I do not speak English.\'',1),(74,74,'What did they do?','A: What did he do this morning?\r\nB: He shaved this morning.\r\nA: Why did he cut himself badly?\r\nB: Because he shaved hurriedly.\r\nA: What di he take?\r\nB: He took a cake.\r\nA: What did he do with it?\r\nB: He ate it quickly.\r\nA: What did you give him?\r\nB: I gave him a glass of water.\r\nA: What did he do with it?\r\nB: He drank it thirstily.\r\nA: When did you meet her.\r\nB: I met her in the steet the day before yesterday.\r\nA: How did she greet you?\r\nB: She greeted me warmly.\r\nA: Why did you arrive home late?\r\nB: Because the bus went slowly yesterday afternoon.\r\nA: What did they do this morning?\r\nB: They worked very hard this morning.\r\nA: What did you do last night?\r\nB: We enjoyed ourselves very much last night.\r\nA: How did he swim this afternoon?\r\nB: He swam very well this afternoon.',1),(75,75,'Uncomfortable shoes','LADY: Do you have any shoes like these?\r\nSHOP ASSISTANT: What size?\r\nLADY: Size five.\r\nSHOP ASSISTANT: What colour?\r\nLADY: Black.\r\nSHOP ASSISTANT: I\'m sorry. We don\'t have any.\r\nLADY: But my sister bought this pair last month.\r\nSHOP ASSISTANT: Did she buy them here?\r\nLADY: No, she bought them in the U.S.\r\nSHOP ASSISTANT: We had some shoes like those a month ago, but we don\'t have any now.\r\nLADY: Can you get a pair for me, please?\r\nSHOP ASSISTANT: I\'m afraid that I can\'t. They were in fashion last year and the year before last. But they\'re not in fashion this year. These shoes are in fashion now.\r\nLADY: They look very uncomfortable.\r\nSHOP ASSISTANT: They are very uncomfortable. But women always wear uncomfortable shoes!',1),(76,76,'When did you ...?','A: When did you look at a photograph?\r\nB: I looked at a photograph an hour ago.\r\nA: When did the cat jump off the wall.\r\nB: It jumped off the wall five minutes ago.\r\nA: When did he walk across the park?\r\nB: He walked across the park a minute ago.\r\nA: When did he wash his hands?\r\nB: He washed his hands half an hour ago.\r\nA: When did Mr. Blake work in an office?\r\nB: He worked in an office this afternoon.\r\nA: When did she ask a question?\r\nB: She asked a question ten minutes ago.\r\nA: When did she type those letters?\r\nB: She typed those letters yesterday evening.\r\nA: When did they watch television?\r\nB: Whey watched television yesterday evening.\r\nA: When did she talk to the salesman?\r\nB: She talked to the salesman yesterday morning.\r\nA: When did she thank her father?\r\nB: Shen thanked her father on her birthday last week.\r\nA: When did she dust the cupboard?\r\nB: She dusted the cupboard just now.\r\nA: When did he paint that bookcase?\r\nB: He painted it the year before last.\r\nA: When did they wait at the bus stop?\r\nB: they waited there twenty minutes ago.\r\nA: When did he want a car like that one?\r\nB: He wanted the car last year and now he has got one.\r\nA: When did you greeted her?\r\nB: I greeted her when she came into the main hall.',1),(77,77,'Terrible toothache','NURSE: Good morning. Mr. Croft.\r\nMR. CROFT: Good morning, nurse. I want to see the dentist, please.\r\nNURSE: Do you have an appointment?\r\nMR. CROFT: No, I don\'t.\r\nNURSE: Is it urgent?\r\nMR. CROFT: Yes, it is. It\'s very urgent. I feel awful. I have a terrible toothache.\r\nNURSE: Can you come at 10 a.m. on Monday, April 24th?\r\nMR. CROFT: I must see the dentist now, nurse.\r\nNURSE: The dentist is very busy at the moment. Can you come at 2 p.m.?\r\nMR. CROFT: That\'s very late. Can the dentist see me now?\r\nNURSE: I\'m afraid that he can\'t, Mr. Croft. Can\'t you wait till this afternoon?\r\nMR. CROFT: I can wait, but my toothache can\'t!',1),(78,78,'When did you ...?','A: It is half past one. When did you see her?\r\nB: I saw her at one o\'clock.\r\nC: I saw her half an hour ago.\r\nA: Today is Tuesday. When did she air the room?\r\nB: The day before yesterday.\r\nC: She aired the room on Sunday.\r\nA: It is March. When did they go to London?\r\nB: The month before last.\r\nC: They went to London in January.\r\nA: It is nineteen sixty-one. When did you paint the room?\r\nB: The year before last.\r\nC: I painted the room in nineteen fifty-nine.\r\nA: It is July 3rd. When did you buy the book?\r\nB: Yesterday.\r\nC: I bought the book on July 2nd.',1),(79,79,'Carol\'s shopping list','TOM: What are you doing, Carol?\r\nCAROL: I\'m making a shopping list, Tom.\r\nTOM: What do we need?\r\nCAROL: We need a lot of thing this week. I must go to the grocer\'s. We haven\'t got much tea or coffee, and we haven\'t got any sugar or jam.\r\nTOM: What about vegetables?\r\nCAROL: I must go to the greengrocer\'s. We haven\'t got many tomatoes, but we\'ve got a lot of potatoes. I must go to the butcher\'s, too. We need some meat. We haven\'t got any meat at all.\r\nTOM: Have we got any beer and wine?\r\nCAROL: No, we haven\'t. And I\'m not going to get any!\r\nTOM: I hope that you\'ve got some money.\r\nCAROL: I haven\'t got much.\r\nTOM: Well, I haven\'t got much either!',1),(80,80,'I must go to the ...','A: How much cheese do you need?\r\nB: I need a lot of cheese. I haven\'t got much. I\'m going to the grocer\'s.\r\nA: How many eggs does she need?\r\nB: She need a lot of eggs. She hasn\'t got any. She\'s going to the greengrocer\'s.\r\nA: How many oranges does he need?\r\nB: He needs a lot of oranges. He hasn\'t got many. He\'s going to the greengrocer\r\nA: How much chicken do they need?\r\nB: They need a lot of chicken. They haven\'t got much. They\'re going to the butcher\'s too.\r\nA: How much bread do you need?\r\nB: I need a lot of bread. I haven\'t got much. I\'m going to the baker\'s.\r\nA: How many aspirins do you need?\r\nB: We need a lot of aspirins. We haven\'t got many. We\'re going to the chemist\'s.',1),(81,81,'Roast beef and potatoes','SAM: Hi, Carol! Where\'s Tom?\r\nCAROL: He\'s upstairs. He\'s having a bath. Tom!\r\nTOM: Yes?\r\nCAROL: Sam\'s here.\r\nTOM: I\'m nearly ready. Hello, Sam. Have a cigarette.\r\nSAM: No, thanks, Tom.\r\nTOM: Have a glass of whisky then.\r\nSAM: OK. Thanks.\r\nTOM: Is dinner ready, Carol?\r\nCAROL: It\'s nearly ready. We can have dinner at seven o\'clock.\r\nTOM: Sam and I had lunch together today. We went to a restaurant.\r\nCAROL: What did you have?\r\nTOM: We had roast beef and potatoes.\r\nCAROL: Oh!\r\nTOM: What\'s the matter, Carol?\r\nCAROL: Well, you\'re going to have roast beef and potatoes again tonight!',1),(82,82,'I had ...','A: What did you do at a quarter to eight?\r\nB: I had breakfast with my wife.\r\nA: What did you do at one in the afternoon?\r\nB: I had lunch with my friend.\r\nA: What did you do at four in the afternoon?\r\nB: I had tea alone.\r\nA: What did you do at seven in the evening?\r\nB: We had supper together.',1),(83,83,'Going on holiday','CAROL: Hello, Sam. Come in.\r\nTOM: Hi, Sam. We\'re having lunch. Do you want to have lunch with us?\r\nSAM: No, thank you. Tom. I\'ve already had lunch. I had lunch at half past twelve.\r\nCAROL: Have a cup of coffee then.\r\nSAM: I\'ve just had a cup, thank you. I had one after my lunch.\r\nTOM: Let\'s go into the living room, Carol. We can have our coffee there.\r\nCAROL: Excuse the mess, Sam. This room\'s very untidy. We\'re packing our suitcases. We\'re going to leave tomorrow. Tom and I are going to have a holiday.\r\nSAM: Aren\'t you lucky!\r\nTOM: When are you going to have a holiday, Sam?\r\nSAM: I don\'t know. I\'ve already had my holiday this year.\r\nCAROL: Where did you go?\r\nSAM: I stayed at home!',1),(84,84,'Have you had ...?','A: Here are some fruit. Have you had any bananas?\r\nB: I haven\'t had any yet.\r\nC: I\'ve already had some.\r\nA: Have you had any peaches?\r\nB: I haven\'t had any.\r\nC: I\'ve just had one.\r\nA: Have you had any lamb?\r\nB: I haven\'t had any.\r\nC: I\'ve just had some.\r\nA: Have you had any beer?\r\nB: I haven\'t had any.\r\nC: I\'ve just had some.',1),(85,85,'Paris in the spring','GEORGE: Hello, Ken.\r\nKEN: Hi, George.\r\nGEORGE: Have you just been to the cinema?\r\nKEN: Yes, I have.\r\nGEORGE: What\'s on?\r\nKEN: \'Paris in the spring\'.\r\nGEORGE: Oh, I\'ve already seen it. I saw it on television last year. It\'s an old film, but it\'s very good.\r\nKEN: Paris is a beautiful city.\r\nGEORGE: I\'ve never been there. Have you ever been there, Ken?\r\nKEN: Yes, I have. I was there in April.\r\nGEORGE: Pairs in the spring, eh?\r\nKEN: It was spring, but the weather was awful. It rained all the time.\r\nGEORGE: Just like London!',1),(86,86,'What have you done?','A: What have you just done?\r\nB: I\'ve just aired the room.\r\nA: What have they just done?\r\nB: They\'ve just cleaned their shoes.\r\nA: What has he just done?\r\nB: He\'s just opened the window.\r\nA: What has he just done?\r\nB: He\'s just sharpened his pencil.\r\nA: What has she just done?\r\nB: She just turned on the television.\r\nA: What has they just done?\r\nB: They\'ve just listened to the music.\r\nA: What has she just done?\r\nB: She\'s just boiled some water.\r\nA: What has he just done?\r\nB: He\'s just answered the phone.\r\nA: What has she just done?\r\nB: She\'s just emptied the trash can.\r\nA: What has she just done?\r\nB: She\'s just asked a question.\r\nA: What has she just done?\r\nB: She\'s just typed a letter.\r\nA: What has she just done?\r\nB: She\'s just washed her hands.\r\nA: What has he just done?\r\nB: He has just walked out of the park.\r\nA: What has he just done?\r\nB: He\'s just painted the bookcase.\r\nA: What has she just done?\r\nB: She has just dusted the cupboard.',1),(87,87,'A car crash','MR. WOOD: Is my car ready yet?\r\nATTENDANT: I don\'t know. sir. What\'s the number of your car?\r\nMR. WOOD: It\'s LFZ 312 G.\r\nATTENDANT: When did you bring it to us?\r\nMR. WOOD: I brought it here three days ago.\r\nATTENDANT: Ah, yes, I remember now.\r\nMR. WOOD: Have your mechanics finished yet?\r\nATTENDANT: No, they\'re still working on it. Let\'s go into the garage and have a look at it. Isn\'t that your car?\r\nMR. WOOD: Well, it was my car.\r\nATTENDANT: Didn\'t you have a crash?\r\nMR. WOOD: That\'s right. I drove it into a lamp-post. Can your mechanics repair it?\r\nATTENDANT: Well, they\'re trying to repair it, sir. But to tell you the truth. you need a new car!',1),(88,88,'Have you ... yet?','A: Have you met Mrs. Jones yes?\r\nB: Yes, I have.\r\nA: When did you meet her?\r\nB: I met her two weeks ago.\r\nA: Has the boss left yes?\r\nB: Yes, he has.\r\nA: When did he leave?\r\nB: He left ten minutes ago.\r\nA: Have you had breakfast yet?\r\nB: Yes, we have.\r\nA: When did you have it?\r\nB: We had it at half past seven.\r\nA: Has she found her pen yet?\r\nB: Yes, she has.\r\nA: When did she find it?\r\nB: She found it an hour ago.',1),(89,89,'For sale','NIGEL: Good afternoon. I believe that this is house is for sale.\r\nIAN: That\'s right.\r\nNIGEL: May I have a look at it, please?\r\nIAN: Yes, of course. Come in.\r\nNIGEL: How long have you lived here?\r\nIAN: I\'ve live here for twenty years.\r\nNIGEL: Twenty year! That\'s long time.\r\nIAN: Yes, I\'ve been here since 1976.\r\nNIGEL: Then why do you want to sell it?\r\nIAN: Because I\'ve just retired. I want to buy a small house in the country.\r\nNIGEL: How much does this house cost?\r\nIAN: $68,500.\r\nNIGEL: That\'s a lot of money!\r\nIAN: It\'s worth every penny of it.\r\nNIGEL: Well, I like the house. but I can\'t decide yet. My wife must see it first.\r\nIAN: Women always have the last word.',1),(90,90,'Have you ... yet?','A: Have you read this book yet?\r\nB: Yes, I have.\r\nA: When did you read it?\r\nB: I read it last year.\r\nA: Have you done your homework yet?\r\nB: Yes, I have.\r\nA: When did you do it?\r\nB: I did it half an hour ago.\r\nA: Has he gone yet?\r\nB: Yes, he has.\r\nA: When did he go?\r\nB: He went an hour ago.\r\nA: Has she spoken to him yet?\r\nB: Yes, she has.\r\nA: When did she speak to him?\r\nB: She spoke to him yesterday.',1),(91,91,'Poor Ian!','CATHERING: Has Ian sold his house yet?\r\nJENNY: Yes, he has. He sold it last week.\r\nCATHERING: Has he moved to his new house yet?\r\nJENNY: No, not yet. He\'s still here. He\'s going to move tomorrow.\r\nCATHERING: When? Tomorrow afternoon.\r\nJENNY: No. Tomorrow afternoon. I\'ll miss him. He has always been a good neighbour.\r\nLIDA: He\'s a very nice person. We\'ll all miss him.\r\nCATHERING: When will the new people move into this house?\r\nJENNY: I think that they\'ll move in the day after tomorrow.\r\nLINDA: Will you see Ian today, Jenny?\r\nJENNY: Yes, I will.\r\nLINDA: Please give him my regards.\r\nCATHERING: Poor Ian! He didn\'t want to leave this house.\r\nJENNY: No, he didn\'t want to leave. but his wife did!',1),(92,92,'When will ...?','A: Did it rain yesterday?\r\nB: Yes, it did. It\'ll rain tomorrow as well.\r\nA: Did it snow yesterday?\r\nB: Yes, It did. It\'ll not snow tomorrow.\r\nA: Will you leave tomorrow afternoon?\r\nB: Yes, I wll. I\'ll leave tomorrow afternoon.\r\nA: When will you get up tomorrow morning?\r\nB: I will get up at ten tomorrow morning.\r\nA: When will the plane arrive?\r\nB: It\'ll arrive this evening.\r\nA: When will he finish the work?\r\nB: He\'ll finish it tonight.\r\nA: When will they have a holiday?\r\nB: They will have a holiday the day after tomorrow in the morning.\r\nA: When will they drive home?\r\nB: They will drive home tomorrow morning.\r\nA: When will he have a haircut?\r\nB: He will never have one.\r\nA: When will she telephone me?\r\nB: She will never telephone you till the end of time.\r\nA: When will he have shave.\r\nB: He will have a shave tomorrow morning.\r\nA: When will he packing his bags?\r\nB: He is now packing his bags.\r\nA: When will she sweep the floor?\r\nB: Only God knows when.\r\nA: When will we paint this room?\r\nB: We will paint it the day after tomorrow in the afternoon.\r\nA: When will they repair my car?\r\nB: They have already been trying to repair it. But to tell you the truth, you\'ll need a new car.\r\nA: When will I make an appointment with the dentist?\r\nB: Can you come at 9 o\'clock tomorrow morning?',1),(93,93,'Our new neighbour','Nigel is our new next-door neighbour. He\'s a pilot.\r\nHe was in the R.A.F.\r\nHe will fly to New York next month.\r\nThe month after next he\'ll fly to Tokyo.\r\nAt the moment, he\'s in Madrid. He flew to Spain a week ago.\r\nHe\'ll return to London the week after next.\r\nHe\'s only forty-one years old, and he has already been to nearly every country in the world.\r\nNigel is a very lucky man. But his wife isn\'t very lucky. She usually stays at home!',1),(94,94,'When did you/will you go to ...?','A: Where will you meet her?\r\nB: I will meet her in Berlin tomorrow.\r\nA: Where will she meet you?\r\nB: She\'ll meet me in Tokyo next month.\r\nA: Where shall we meet you?\r\nB: You\'ll meet us in Paris the year after next.\r\nA: Where will you meet them?\r\nB: We\'ll meet them in Newyork next week.',1),(95,95,'Ticktes, please.','GEORGE: Two return tickets to London, please. What time will the next train leave?\r\nATTENDANT: At nineteen minutes past eight.\r\nGEORGE: Which platform?\r\nATTENDANT: Platform Two. Over the bridge.\r\nKEN: What time will the next train leave?\r\nGEORGE: At eight nineteen.\r\nKEN: We\'ve got plenty of time.\r\nGEORGE: It\'s only three minutes to eight.\r\nKEN: Let\'s go and have a drink. There\'s a bar next door to the station.\r\nGEORGE: We had better go back to the station now, Ken.\r\nPORTER: Tickets, please.\r\nGEORGE: We want to catch the eight nineteen to London.\r\nPORTER: You\'ve just missed it!\r\nGEORGE: What! It\'s only eight fifteen.\r\nPORTER: I\'m sorry, sir. That clock\'s ten minutes slow.\r\nGEORGE: When\'s the next train?\r\nPORTER: In five hours\' time!',1),(96,96,'What\'s the exact time?','A: He returned a month ago. How about you?\r\nB: I will return in two days time.\r\nA: We went to Berlin two weeks ago. How about you?\r\nB: We will go there in a week\'s time.\r\nA: You came back an hour ago. How about her?\r\nB: She\'ll come back in two minutes time.\r\nA: They arrived at Sydney a year ago. How about you?\r\nB: We\'ll meet in two year\'s time.',1),(97,97,'A small blue case','MR. HALL: I left a suitcase on the train to London the other day.\r\nATTENDANT: Can you describe it, sir?\r\nMR. HALL: It\'s a small blue case and it\'s got a zip. There\'s a label on the handle with my name and address on it.\r\nATTENDANT: Is this case yours?\r\nMR. HALL: No, that\'s not mine.\r\nATTENDANT: What about this one? This one\'s got a label.\r\nMR. HALL: Let me see it.\r\nATTENDANT: What\'s your name and address?\r\nMR. HALL: David Hall, 83, Bridge Street.\r\nATTENDANT: That\'s right. D.N. Hall, 83, Bridge Street.\r\nATTENDANT: Three pounds fifty pence, please.\r\nMR. HALL: Here you are.\r\nATTENDANT: Thank you.\r\nMR. HALL: Hey!\r\nATTENDANT: What\'s matter?\r\nMR. HALL: This case doesn\'t belong to me! You\'ve given me the wrong case!',1),(98,98,'Whose is it?\r\nWhose are they?','A: Do these case belong to you?\r\nB: Yes, they do. They\'re mine.\r\nA: Does this envelope belong to you?\r\nB: Yes, it does. It\'s mine.\r\nA: Do those clothes belong to them?\r\nB: Yes, they do. They\'re theirs.\r\nA: Does this passport belong to him?\r\nB: No, it doesn\'t. It\'s not his.\r\nA: Do these tickets belong to us?\r\nB: No, they don\'t. They\'re not ours.\r\nA: Does this watch belong to her?\r\nB: No, it doesn\'t. It\'s not hers.\r\nA: Does these flowers belong to them?\r\nB: Yes, they do. They\'re theirs.\r\nA: Does this boat belong to bim?\r\nB: Yes, it does. It is his.\r\nA: Does this book belong to me?\r\nB: Yes, it does. It a present for you. Happy birthday!\r\nA: Do these hammers belong to her?\r\nB: No, they don\'t. They\'re not hers.\r\nA: Does this car belong to him?\r\nB: No, it doesn\'t. It\'s not his.\r\nA: Are these pens belong to me?\r\nB: No, they don\'t. They\'re not yours.',1),(99,99,'Ow!','ANDY: Ow!\r\nLUCY: What\'s the matter, Andy?\r\nANDY: I slipped and fell downstairs.\r\nLUCY: Have you hurt yourself?\r\nANDY: Yes, I have. I think that I\'ve hurt my back.\r\nLUCY: Try and stand up. Can you stand up? Here. Let me help you.\r\nANDY: I\'m sorry, Lucy. I\'m afraid that I can\'t get up.\r\nLUCY: I think that the doctor had better see you. I\'ll phone Dr. Carter.\r\nLUCY: The doctor says that he will come at once. I\'m sure that you need an X-ray, Andy.',1),(100,100,'He/She says that... They say that ...','A: I\'m tired.\r\nB: Pardon?\r\nC: He says that he\'s tired.\r\nA: I\'ve got a headache.\r\nB: Sorry?\r\nC: He says that he\'s got a headache.\r\nA: I want some money.\r\nB: Pardon?\r\nC: He says that he wants some money.\r\nA: I can repair the car.\r\nB: Sorry.\r\nC: He says that he can repair the car.\r\nA: I feel thirsty.\r\nB: Pardon?\r\nC: He says that he feels thirsty.',1),(101,101,'A card from Jimmy','GRANDMOTHER: Read Jimmy\'s card to me please, Penny.\r\nPENNY: \'I have just arrived in Scotland and I\'m staying at a Youth Hostel.\'\r\nGRANDMOTHER: Eh?\r\nPENNY: He say he\'s just arrived in Scotland. He says he\'s staying at a Youth Hostel. You know he\'s a member of the Y.H.A.\r\nGRANDMOTHER: The what?\r\nPENNY: The Y.H.A., Mum. The Youth Hostels Association.\r\nGRANDMOTHER: What else does he say?\r\nPENNY: \'I\'ll write a letter soon. I hope you all well.\'\r\nGRANDMOTHER: What? Speak up. Penny. I\'m afraid I can\'t hear you\r\nPENNY: He say he\'ll write a letter soon. He hopes we are all well. \'Love, Jimmy.\'\r\nGRANDMOTHER: Is that all? He doesn\'t say very much, does he?\r\nPENNY: He can\'t write very much on a card, Mum.',1),(102,102,'He/She says he/she ... They say they ...','A: I\'m cold.\r\nB: Pardon?\r\nC: She says she\'s cold.\r\nA: I\'ve got an earache.\r\nB: Sorry?\r\nC: She says she\'s got an earache.\r\nA: I need an X-ray.\r\nB: Pardon?\r\nC: She says she need an X-ray.\r\nA: I must wait for the bus.\r\nB: Sorry?\r\nC: She says she must wait for the bus.',1),(103,103,'The French test','GARY: How was the exam, Richard?\r\nRICHARD: Not too bad. I think I passed in English and Mathematics. The questions were very easy. How about you, Gary?\r\nGARY: The English and Maths papers weren\'t easy enough for me. I hope I haven\'t failed.\r\nRICHARD: I think I failed the French paper. I could answer sixteen of the questions. They were very easy. But I couldn\'t answer the rest. They were too difficult for me.\r\nGARY: French test are awful, aren\'t they?\r\nRICHARD: I hate them. I\'m sure I\'ve got a low mark.\r\nGARY: Oh, cheer up! Perhaps we didn\'t do too badly. The guy next to me Wrote his name at the top of the paper.\r\nRICHARD: Yes?\r\nGARY: Then he sat there and looked at it for three hours! He didn\'t write a word!',1),(104,104,'Too, very, enough','A: Could you answer all these questions?\r\nB: Yes, they were easy enough for me to answer.\r\nA: Could you answer all these questions?\r\nB: No, they couldn\'t. They were very stupid.\r\nA: Could they buy this car?\r\nB: No, they couldn\'t. It was too expensive for them to buy.\r\nA: Could they eat the cake?\r\nB: No, they couldn\'t. They were not fresh enough. They were stale.\r\nA: Could they hear the music?\r\nB: Yes, they could. The music was loud enough for them to hear.\r\nA: Could he climb the wall?\r\nB: Yes, he could. It was low enough for him to climb.\r\nA: Could she eat the pear?\r\nB: Yes, she could. It was soft enough for her to eat.\r\nA: Could she eat the orange?\r\nB: No, she couldn\'t. It was too sour for her to eat.',1),(105,105,'Full of mistakes','THE BOSS: Where\'s Sandra, Bob? I want her.\r\nBOB: Do you want to speak to her?\r\nTHE BOSS: Yes, I do. I want her to come to my office. Tell her to come at once.\r\nSANDRA: Did you want to see me?\r\nTHE BOSS: Ah, yes, Sandra. How do you spell \'intelligent\'? Can you tell me?\r\nSANDRA: I-N-T-E-L-L-I-G-E-N-T.\r\nTHE BOSS: That\'s right. You\'ve typed it with only one \'L\'. This letter\'s full of mistakes. I want you to type it again.\r\nSANDRA: Yes, I\'ll do that. I\'m sorry about that.\r\nTHE BOSS: And here\'s a little present for you.\r\nSANDRA: What\'s it?\r\nTHE BOSS: It\'s a dictionary. I hope it\'ll help you.',1),(106,106,'I want you/him/her/them to ...\r\nTell him/her/them to','A: Why is the woman pointing to the box?\r\nB: Because she wants him to carry it for her.\r\nA: Why did the teacher give the exercise book to him?\r\nB: Because he wanted him to correct the mistakes.\r\nA: Why is the boy playing some music?\r\nB: Because the girls want to listen to it.\r\nA: Why is the man talking to the attendant?\r\nB: Because he lost his case and he\'ll have to describe it first to the attendant.\r\nA: Why is the policeman talking to them?\r\nB: Because he wants them to move the car.\r\nA: Why is she taking a cake to him?\r\nB: Because she wants him to try it.\r\nA: Why is the mother reprimanding the girl?\r\nB: She wants her to finish it.\r\nA: Why is the man giving the woman his photograph?\r\nB: Because he wants her to keep it.\r\nA: Why is the mother calling to her son?\r\nB: Because he doesn\'t want his child to fall off the tree and hurt himself.\r\nA: Why is the woman taking his arm?\r\nB: Because she doesn\'t want him to slip.\r\nA: Why is she nervous?\r\nB: Because she doesn\'t want the picture to fall.\r\nA: Why is she saying goodbye to them?\r\nB: Because she doesn\'t want them to miss the train.\r\nA: Why is she standing under the stair?\r\nB: Because she doesn\'t want him to break the vase while he is get down.\r\nA: Why did the man stop his wife from driving the car?\r\nB: Because he didn\'t want her to crash his new car.\r\nA: Why did the mother take the cash from her daughter?\r\nB: Because she didn\'t want her to lose it.\r\nA: Why is the mother taking the knife from her son?\r\nB: Because she doesn\'t want him to cut himself.',1),(107,107,'It\'s too small.','ASSISTANT: Do you like this dress, madam?\r\nLADY: I like the colour very much. It\'s a lovely dress, but it\'s too small for me.\r\nASSISTANT: What about this one? It\'s lovely dress. It\'s very smart. Short skirts are in fashion now.\r\nWould you like to try it?\r\nLADY: All right. I\'m afraid this green dress it too small for me as well. It\'s smaller than the blue one. I don\'t like the colour either. It doesn\'t suit me at all. I think the blue dress is prettier. Could you show me another blue dress? I want a dress like that one, but it must be my size.\r\nASSISTANT: I\'m afraid I haven\'t got a larger dress. This is the largest dress in the shop.',1),(108,108,'How do they compare?','Sophie is tall. Paul is taller than Sophie. Hans is the tallest student in our class.\r\nIt is hot today. It was hotter yesterday. The day before yesterday was the hottest day in the year.\r\nThere was a large crowd at the race last year. This year the crowd is larger. It is the largest crowd I have ever seen.\r\nThe brown suitcase is heavy. The blue suitcase is heavier than the brown one. The green suitcase is the heaviest of them all.',1),(109,109,'A good idea','CHARLOTTE: Shall I make some coffee, Jane?\r\nJANE: That\'s a good idea, Charlotte.\r\nCHARLOTTE: It\'s ready. Do you want any milk?\r\nJANE: Just a little, please.\r\nCHARLOTTE: What about some sugar? Two teaspoonfuls?\r\nJANE: No, less than that. One and a half teaspoonfuls, please. That\'s enough for me. That was very nice.\r\nCHARLOTTE: Would you like some more?\r\nJANE: Yes, please.\r\nJANE: I\'d like a cigarette, too. May I have one?\r\nCHARLOTTE: Of course. I think there are a few in that box.\r\nJANE: I\'m afraid it\'s empty.\r\nCHARLOTTE: What a pity!\r\nJANE: It doesn\'t matter.\r\nCHARLOTTE: Have a biscuit instead. Eat more and smoke less!\r\nJANE: That\'s very good advice!',1),(110,110,'How do they compare?','A: Have you got any chocolate? I haven\'t got much.\r\nB: I\'ve got more than you have.\r\nC: I\'ve got the most.\r\nA: Have you got any chocolate? I\'ve got very little.\r\nB: I\'ve got less than you have.\r\nC: I\'ve got the least.\r\nA: Have you made any mistakes? I haven\'t make many.\r\nB: I\'ve make more than you have.\r\nC: I\'ve make the most.\r\nA: Have you made any mistakes. I\'ve made very few.\r\nB: I\'ve made fewer than you have.\r\nC: I\'ve made the fewest.\r\nA: You must see my new car. It\'s very good.\r\nB: My car is better than yours.\r\nC: This one\'s the best I\'ve ever seen.\r\nA: You mustn\'t go to that restaurant. It\'s very bad.\r\nB: This one\'s worse.\r\nC: This one\'s the worst I\'ve ever seen.',1),(111,111,'The most expensive model','MR. FRITH: I like television very much. How much does it cost?\r\nASSISTANT: It\'s the most expensive model in the shop. It costs five hundred pounds.\r\nMR. FRITH: That\'s too expensive for us. We can\'t afford all that money.\r\nASSISTANT: This model\'s less expensive than that one. It\'s only three hundred pounds. But, of course, it\'s not as good as the expensive one.\r\nMR. FRITH: I don\'t like the model. The other model\'s more expensive, but it\'s worth the money. Can we buy it on instalments?\r\nASSISTANT: Of course. You can pay a deposit of thirty pounds, and then fourteen pounds a month for three years.\r\nMR. FRITH: Do you like it, dear?\r\nMRS. FRITH:I certainly do, but I don\'t like the price. You always want the best, but we can\'t afford it. Sometimes you think you\'re a millionaire!\r\nMR. FRITH: Millionaires don\'t buy things on instalments!',1),(112,112,'How do they compare?','A: Is the red apple sweeter than the green one?\r\nB: No, it\'s not sweeter than the green one. It\'s as sweet as the green one.\r\nA: Is the policeman taller than the policewoman?\r\nB: No, she\'s not taller than the policewoman. She is as tall as the him.\r\nA: Is the man shorter than the woman?\r\nB: No, he\'s not shorter than the woman. He\'s as short as the her.\r\nA: Is the boy older than the girl?\r\nB: No, he\'s not older than the girl. He\'s as old as her.\r\nA: Is the red pencil blunter than the orange one?\r\nB: No, it\'s not blunter than the other one. It\'s as blunt as it.\r\nA: Is the blue car as clean as the red one?\r\nB: No, it\'s not as clean as the red one. It\'s cleaner than it..\r\nA: Is the man as fat as the woman?\r\nB: No, he\'s not as fat as the woman. He\'s fatter than her.\r\nA: Is the woman on the left as smart as the right one?\r\nB: No, she\'s not as smart as the right woman. She is smarter than her.\r\nA: Is the box on the right as light than the left one?\r\nB: No, it\'s not as light as the left one. It\'s lighter than it.\r\nA: Is the bag on the right newer than the left one?\r\nB: No, it\'s not as new as the left one. It\'s newer than it.\r\nA: Is the television on the right as expensive as the left one?\r\nB: It\'s not as expensive as the left one. It\'s more expensive than the left one.',1),(113,113,'Small change','CONDUCTOR: Fares, please!\r\nMAN: Trafalgar Square, please.\r\nCONDUCTOR: I\'m sorry, sir. I can\'t change a ten-pound note. Haven\'t you got any small change?\r\nMAN: I\'ve got no small change, I am afraid.\r\nCONDUCTOR: I\'ll ask some of the passengers. Have you any small change, sir?\r\n1st PASSENGER: I\'m sorry. I\'ve got none.\r\n2nd PASSENGER: I haven\'t got any either.\r\nCONDUCTOR: Can you change this ten-pound note, madam?\r\n3rd PASSENGER: I\'m afraid I can\'t.\r\n4th PASSENGER: Neither can I.\r\nCONDUCTOR: I\'m very sorry, sir. You must get off the bus. None of our passengers can change this note. They\'re all millionaires!\r\nTWO TRAMPS: Except us.\r\n1st TRAMP: I\'ve got some small change.\r\n2nd TRAMP: So have I.',1),(114,114,'I\'ve got none.','A: Have you got any chocolate?\r\nB: I haven\'t got any. I\'ve got no chocolate. I\'ve got none.\r\nC: No, I haven\'t got any either. Neither have I.\r\nA: Have you got any envelopes?\r\nB: No, I haven\'t got any. I\'ve got no envelopes.\r\nC: I haven\'t got any either. Neither have I.\r\nA: Have you got any cake?\r\nB: Yes, I\'ve got some.\r\nC: So have I.\r\nA: Have you got any biscuits?\r\nB: Yes, I\'ve got some.\r\nC: So have I.',1),(115,115,'Knock, knock!','HELEN: Isn\'t there anyone at home?\r\nJIM: I\'ll knock again, Helen. Everything\'s very quiet. I\'m sure there\'s no one at home.\r\nHELEN: But that\'s impossible. Carol and Tom invited us to lunch. Look through the window.\r\nHELEN: Can you see anything?\r\nJIM: Nothing at all.\r\nHELEN: Let\'s try the back door.\r\nJIM: Look! Everyone\'s in the garden.\r\nCAROL: Hello, Helen. Hello, Jim.\r\nTOM: Everybody wants to have lunch in the garden. It\'s nice and warm out here.\r\nCAROL: Come and have something to drink.\r\nJIM: Thanks, Carol. May I have a glass of beer please?\r\nCAROL: Beer? There\'s none left. You can have some lemonade.\r\nJIM: Lemonade!\r\nTOM: Don\'t believe her, Jim. She\'s only joking. Have some beer!',1),(116,116,'Every, no, any and some','Be quiet. Everyone is asleep. Everybody is asleep.\r\nHello? Is there anyone at home? I there anybody at home?\r\nOh no. There\'s no one at home. There\'s nobody at home.\r\nLook! There\'s someone in the garden. There\'s somebody in the garden.\r\nOh god. Everything is untidy.\r\nTed, is there anything in that box?\r\nWell, there\'s nothing in this box.\r\nJesus Christ! There\'s something under that chair! It\'s a mouse!\r\nYesterday, I looked for my pen everywhere.\r\nUnfortunately, I couldn\'t find my pen anywhere at last.\r\nWhere didn\'t you go yesterday? I went nowhere. I stayed at home the whole day.\r\nMy glasses must be somewhere! You\'re wearing them!',1),(117,117,'Tommy\'s breakfast','When my husband was going into the dining room this morning, he dropped some coins on the floor.\r\nThere were coins everywhere. We looked for them, but we could not find them all.\r\nWhile we were having breakfast, our little boy, Tommy, found two small coins on the floor.\r\nHe put them both into his mouth. We both tried to get the coins, but it was too late. Tommy had already swallowed them!\r\nLate that morning, when I was doing the housework, My husband phoned me from the office.\r\n\'How\'s Tommy?\' he asked. \'I don\'t know,\' I answered, \'Tommy\'s been to the toilet three times this morning, but I haven\'t had any change yet!\'',1),(118,118,'What were you doing?','A: What happened when you were having breakfast?\r\nB: Some one knocked at the door when I was having breakfast.\r\nA: What happened when you were leaving the house?\r\nB: When I was leaving the house, The postman arrived.\r\nA: What happened when you were opening the front door?\r\nB: Just as I was opening the front door, the telephone rang.\r\nA: What happened while she was getting off the bus?\r\nB: She slipped and hurt herself while she was getting off the bus.\r\nA: What happened while she was shaving?\r\nB: She cut himself while he was shaving.\r\nA: What was her doing while you were working in the garden?\r\nB: My wife was cooking the dinner while I was working in the garden.',1),(119,119,'A true story','Do you like stories? I want to tell you a true story. It happened to a friend of mine a year ago.\r\nWhile my friend, George, was reading in bed, two thieves climbed into his kitchen.\r\nAfter they had entered the house, they went into the dining room. It was very dark, so they turned on a torch.\r\nSuddenly, they heard a voice behind them. \'What\'s up? What\'s up?\' someone called. The thieves dropped the torch and ran away as quickly as they could.\r\nGeorge heard the noise and came downstairs quickly.\r\nHe turned on the light, but he couldn\'t see anyone. The thieves had already gone.\r\nBut George\'s parrot, Henry, was still there. \'What\'s up, George?\' the called. \'Nothing, Henry,\' George said and smiled. \'Go back to sleep.\'',1),(120,120,'It had already happened.','A: Why didn\'t you buy the car yesterday?\r\nB: I asked the price of the car, but they had already sold it.\r\nA: Why didn\'t you catch the train?\r\nB: I ran to the platform quickly, but the train had already left.\r\nHe gave us our exercise books after he had corrected them.\r\nShe went on holiday after she had taken the examination.\r\nShe had finished the housework before she went out.\r\nWe had had dinner before they arrived.',1),(121,121,'The man in a hat','CUSTOMER: I bought two expensive dictionaries here half and hour ago, but I forgot to take them with me.\r\nMANAGER: Who served you, sir?\r\nCUSTOMER: The lady who is standing behind the counter.\r\nMANAGER: Which books did you buy?\r\nCUSTOMER: The books which are on the counter.\r\nMANAGER: Did you serve this gentleman half an hour ago, Caroline? He says he\'s the man who bought these books.\r\nCUSTOMER: I can\'t remember. The man who I served was wearing a hat.\r\nMANAGER: Have you got a hat, sir?\r\nCUSTOMER: Yes, I have.\r\nMANAGER: Would you put it on, please?\r\nCUSTOMER: All right.\r\nMANAGER: Is this the man that you served, Caroline?\r\nCUSTOMER: Yes. I recognize him now.',1),(122,122,'Who (whom), which and that','A: Who served you yesterday?\r\nB: The man who is standing behind the counter.\r\nC: I served him. He is the man who I served yesterday.\r\nA: Which book did you buy?\r\nB: The book which is on the counter.\r\nA: Which books did you buy?\r\nB: The books which are on the counter.\r\nA: Which dog is yours?\r\nB: The dog which is carring that basket.',1),(123,123,'A trip to Australia','MIKE: Look, Scott. This is a photograph I took during my trip to Australia.\r\nSCOTT: Let me see it, Mike. This is a good photograph. Who are these people?\r\nMIKE: They\'re people I met during the trip. That\'s the ship we travelled on.\r\nSCOTT: What a beautiful ship! Who\'s this?\r\nMIKE: That\'s the man I told you about. Remember?\r\nSCOTT: Ah yes. The one who offered you a job in Australia.\r\nMIKE: That\'s right.\r\nSCOTT: Who\'s this?\r\nMIKE: Guess!\r\nSCOTT: It\'s not you, is it?\r\nMIKE: That\'s right. I grew a beard during the trip. but I shaved it off when I came home.\r\nSCOTT: Why did you shave it off?\r\nMIKE: My wife didn\'t like it!',1),(124,124,'Who (whom), which and that','A: Who served you yesterday?\r\nB: The man standing behind the counter did.\r\nC: I served him. He is the man I served yesterday.\r\nA: Who is making all that noise?\r\nB: The men repairing the road was.\r\nC: I saw them yesterday. They are the men I saw yesterday. They were repairing the road. They made noise yesterday.\r\nA: What\'s this?\r\nB: This is the book I bought yesterday.\r\nA: What are these?\r\nB: These are the pencils I brought here yesterday.\r\nA: What\'s this?\r\nB: This is the kitten I found in the garden.',1),(125,125,'Tea for two','SUSAN: Can\'t you come in and have tea now, Peter?\r\nPETER: Not yet. I must water the garden first.\r\nSUSAN: Do you have to water it now?\r\nPETER: I\'m afraid I must. Look at it! It\'s terribly dry.\r\nSUSAN: What a nuisance!\r\nPETER: Last summer it was very dry, too. Don\'t you remember? I had to water it every day.\r\nSUSAN: Well, I\'ll have tea by myself. That was quick!\r\nHave you finished already?\r\nPETER: Yes. Look out of the window.\r\nSUSAN: It\'s raining! That means you don\'t need to water the garden.\r\nPERTR: That was a pleasant surprise. It means I can have tea, instead.',1),(126,126,'Have to and do not need to','A: Do you have to go now?\r\nB: Yes, I have to leave immediately.\r\nA: Do you have to get up early tomorrow morning?\r\nB: Yes, I\'ll have to get up at six o\'clock.\r\nA: Did you have to take a taxi?\r\nB: I\'m afraid I had to. I couldn\'t get a bus.\r\nA: Hasn\'t your friend arrived yet?\r\nB: How long have you had to wait? I\'ve had to wait for two hours!\r\nA: Do you have to water the garden?\r\nB: No, I don\'t need to water it now. It\'s going to rain.\r\nA: Do we have to walk to the station?\r\nB: No, we don\'t need to. We can catch a bus.',1),(127,127,'A famous actress','KATE: Can you recognize that woman, Liz?\r\nLIZ: I think I can, Kate. It must be Karen Marsh, the actress.\r\nKATE: I though so. Who\'s that beside her?\r\nLIZ: That must be Conrad Reeves.\r\nKATE: Conrad Reeves, the actor? It\'s can\'t be. Let me have another look. I think you\'re right! Isn\'t he her third husband?\r\nLIZ: No. He must be her fourth or fifth.\r\nKATE: Doesn\'t Karen Marsh look old!\r\nLIZ: She does, doesn\'t she! I read she\'s twenty-nine, but she must be at least forty.\r\nKATE: I\'m sure she is.\r\nLIZ: She was a famous actress when I was still at school.\r\nKATE: That was a long time ago, wasn\'t it?\r\nLIZ: Not that long ago! I\'m not more than twenty-nine myself.',1),(128,128,'He can\'t be ...\r\nHe must be ...','He can\'t be ill. He must be tired.\r\nIt can\'t be my new hat. It must be my old one.\r\nShe can\'t be Danish. She must be Swedish.\r\nHe can\'t be a dentist. He must be a doctor.\r\nShe can\'t be forty. She must be fifty.\r\nIt can\'t be the 20th. It must be the 21st.\r\nHe can\'t be the youngest. He must be the oldest.\r\nHe can\'t be reading. He must be sleeping.',1),(129,129,'Seventy miles an hour','ANN: Look, Gary! That policeman\'s waving to you. He wants you to stop.\r\nPOLICEMAN: Where do you think you are? On a race track? You must have been driving at seventy miles an hour.\r\nGARY: I can\'t have been.\r\nPOLICEMAN: I was doing eighty when I overtook you.\r\nPOLICEMAN: Didn\'t you see the speed limit?\r\nGARY: I\'m afraid I didn\'t, officer. I must have been dreaming.\r\nANN: He wasn\'t dreaming, officer. I was telling him to drive slowly.\r\nGARY: That\'s why I didn\'t see the sign.\r\nPOLICEMAN: Let me see your driving licence. I won\'t charge you this time. But you\'d better not do it again!\r\nGARY: Thank you. I\'ll certainly be more careful.\r\nANN: I told you to drive slowly, Gary.\r\nGARY: You always tell me to drive slowly, darling.\r\nANN: Well, next time you\'d better take my advice!',1),(130,130,'He can\'t have been ...\r\nHe must have been ...','He can\'t have been ill. He must have been tired.\r\nIt can\'t have been my new hat. It must have been my old one.\r\nShe can\'t have been Danish. She must have been Swidish.\r\nHe can\'t have been a dentist. He must have been a doctor.\r\nShe can\'t have been forty. She must have been fifty.\r\nIt can\'t have been the 20th. It must be the 21st.\r\nHe can\'t have been the youngest. He must have been the oldest\r\nHe can\'t have been reading. He must have been sleeping.',1),(131,131,'Don\'t be so sure!','MARTIN: Where are you going to spend your holidays this year, Gary?\r\nGARY: We may go abroad. I\'m not sure. My wife wants go to Egypt. I\'d like to there, too. We can\'t make up our minds.\r\nMARTIN: Will you travel by sea or air?\r\nGARY: We may travel by sea.\r\nMARTIN: It\'s cheaper, isn\'t it?\r\nGARY: It may be cheaper. but it takes a long time.\r\nMARTIN: I\'m sure you\'ll enjoy yourselves.\r\nGART: Don\'t be so sure. We might not go anywhere. My wife always worries too much. Who\'s going to look after the dog? Who\'s going to look after the house? Who\'s going to look after the garden? We have this problem every year. In the end, we stay at home and look after everything!',1),(132,132,'He may be ...\r\nHe may have been ...\r\nI\'m not sure.','A: Where\'s Harry?\r\nB: He may be in his room. I\'m not sure.\r\nA: Where will he go?\r\nB: He may go to the cinema. I\'m not sure.\r\nA: Why is he late?\r\nB: He may be busy. I\'m not sure.\r\nA: What is he doing?\r\nB: He may be reading. I\'m not sure.\r\nA: Why was he late?\r\nB: He may have been busy. I\'m not sure.\r\nA: What was he doing?\r\nB: He may have been reading. I\'m not sure.',1),(133,133,'Sensational news!','REPORTER: Have you just made a new film, Miss Marsh?\r\nMISS MARSH: Yes, I have.\r\nREPORTER: Are you going to make another?\r\nMISS MARSH: No, I\'m not. I\'m going to retire. I feel very tired. I don\'t want to make another film for a long time.\r\nKATE: Let\'s buy a newspaper, Liz. Listen to this! \'Karen Marsh: Sensational News! By our reporter, Alan Jones. Karen Marsh arrived at London Airport today. She was wearing a blue dress and a mink coat. She told me she had just made a new film. She said she was not going to make another. She said she was going to retire. She told reporters she felt very tired and didn\'t want to make another film for a long time.\'\r\nLIZ: I wonder why!',1),(134,134,'He said (that) he ...\r\nHe told me (that) he ...','A: I\'m tired.\r\nB: What did he say? What did he tell you?\r\nC: H said that he was tired. He told me that he was tired.\r\nA: I\'m reading.\r\nB: What did she say? What did she tell you?\r\nC: She said taht she was reading. She told me that she was reading.\r\nA: We want our dinner.\r\nB: What did they say? What did they tell you?\r\nC: They said that they wanted their dinner. They told me that they wanted their dinner.\r\nA: I\'ve finished my homework.\r\nB: What did he say? What did he tell you?\r\nC: He said that he had finished his homework. He told me that he had finished his homework.',1),(135,135,'The latest report','REPORTER: Are you really going to retire, Miss Marsh?\r\nMISS MARSH: I may. I can\'t make up my mind. I will have to ask my future husband. He won\'t let me make another film.\r\nREPORTER: Your future husband, Miss Marsh?\r\nMISS MARSH: Yes. Let me introduce him to you. His name is Carlos. We\'re going to get married next week.\r\nKATE: Look, Liz! Here\'s another report about Karen Marsh. Listen: \'Karen Marsh: The latest. At her London Hotel today Miss Marsh told reporters she might retire. She said she couldn\'t make up her mind. She said she would have to ask her future husband. She said her future husband would not let her make another film. Then she introduced us to Carlos and told us they would get married next week\'.\r\nLIZ: That\'s sensational news, isn\'t it, Kate?\r\nKATE: It certainly is. He\'ll be her sixth husband!',1),(136,136,'He said (that) he ...\r\nHe told me (that) he ...','A: I\'ll leave tomorrow.\r\nB: What did he say? What did he tell you?\r\nC: He said that he would leave tomorrow. He told me that he would leave tomorrow.\r\nA: I can\'t do this Maths problem.\r\nB: What did he say? What did he tell you?\r\nC: He said that he couldn\'t do this Maths problem. He told me that he couldn\'t do this Maths problem.\r\nA: I may return at six o\'clock.\r\nB: What did she say? What did she tell you?\r\nC: She said that she might return at six o\'clock. She told me that she might return at six o\'clock.',1),(137,137,'A pleasant dream','JULIE: Are you doing the football pools, Brain?\r\nBRIAN: Yes, I\'ve nearly finished, Julie. I\'m sure we\'ll win something this week.\r\nJULIE: You always say that, but we never win anything! What will you do if you win a lot of money?\r\nBRIAN: If I win a lot of money I\'ll buy you a mink coat.\r\nJULIE: I don\'t want a mink coat! I want to see the world.\r\nBRIAN: All right. If we win a lot of money we\'ll travel round the world and we\'ll stay at the best hotels. Then we\'ll return home and buy a big house in the country. We\'ll have a beautiful garden and ...\r\nJULIE: But if we spend all that money we\'ll be poor again. What\'ll we do then?\r\nBRIAN: If we spend all the money we\'ll try and win the football pools again.\r\nJULIE: It\'s a pleasant dream but everything depends on \'if\'!',1),(138,138,'If ...','If you break this window, you\'ll have to pay for it!\r\nIf you don\'t hurry, we\'ll miss the rain.\r\nIf he falls, he\'ll hurt himself.\r\nIf it rains tomorrow, we won\'t go to the seaside.\r\nIf you feel better, you can get up.\r\nIf he sells that car, he can buy a new one.',1),(139,139,'Is that you, John?','GRAHAM TURNER: Is that you, John?\r\nJOHN SMITH: Yes, speaking.\r\nGRAHAM TURNER: Tell Mary we\'ll be late for dinner this evening.\r\nJOHN SMITH: I\'m afraid I don\'t understand.\r\nGRAHAM TURNER: Hasn\'t Mary told you? She invited Charlotte and me to dinner this evening. I said I would be at your house at six o\'clock, but the boss wants me to do some extra work. I\'ll have to stay at the office. I don\'t know when I\'ll finish. Oh, and by the way, my wife wants to know if Mary needs any help.\r\nJOHN SMITH: I don\'t know what you\'re talking about.\r\nGRAHAM TURNER: That is John Smith, isn\'t it?\r\nJOHN SMITH: Yes, I\'m John Smith.\r\nGRAHAM TURNER: You are John Smith, the engineer, aren\'t you?\r\nJOHN SMITH: That\'s right.\r\nGRAHAM TURNER: You work for the Overseas Engineering Company, don\'t you?\r\nJOHN SMITH: No, I don\'t. I\'m John Smith the telephone engineer and I\'m repairing your telephone line.',1),(140,140,'He wants to know if/why/what/when','A: Are you tired?\r\nB: What does he want to know?\r\nC: He wants to know if you are tired.\r\nA: Why are you tired?\r\nB: What does he want to know?\r\nC: He wants to know why you are tired.\r\nA: Are you reading?\r\nB: What does he want to know?\r\nC: He wants to know if you are reading.\r\nA: What are you reading?\r\nB: What does he want to know?\r\nC: He wants to know what you are reading.\r\nA: Does Tom always do his homework?\r\nB: What does he want to know?\r\nC: He wants to know if Tom always does his homework.\r\nA: When does Tom do his homework?\r\nB: What does he want to know?\r\nC: He wants to know when Tom does his homework.',1),(141,141,'Sally\'s first train ride','Last week, my four-year-old daughter, Sally, was invited to a children\'s party. I decided to take her by train. Sally was very excited because she had never travelled on a train before. She sat near the window and asked questions about everything she saw. Suddenly, a middle-aged lady got on the train and sat opposite Sally. \'Hello, little girl,\' she said. Sally did not answer, but looked at her curiously. The lady was dressed in a blue coat and a large, funny hat. After the train had left the station, the lady opened her handbag and took out her powder compact. She then began to make up her face. \'Why are you doing that?\' Sally asked. \'To make myself beautiful,\' the lady answered. She put away her compact and smiled kindly. \'But you are still ugly,\' Sally said. Sally was amused, but I was very embarrassed!',1),(142,142,'Someone invited Sally to a party.\r\nSally was invited to a party','She is embarrassed.\r\nThey are worried.\r\nA: Does anyone ever repaired this car?\r\nB: Someone repairs it regularly. It is repaired regularly.\r\nA: Does anyone ever correct these exercise books?\r\nB: Someone corrects them regularly. They are corrected regularly.\r\nA: Did anyone meet him at the station this morning.\r\nB: Someone met him at the station this morning. He was met at the station this morning.',1),(143,143,'A walk through the woods','I live in a very old town which is surrounded by beautiful woods. It is a famous beauty spot. On Sundays, hundreds of people come from the city to see our town and to walk through the woods. Visitors have been asked to keep the woods clean and tidy. Litter baskets have been placed under the trees, but people still throw their rubbish everywhere. Last Wednesday, I went for a walk in the woods. What I saw made me very sad. I counted seven old cars and three old refrigerators. The little baskets were empty and the ground was covered with pieces of paper, cigarette ends, old tyres, empty bottles and rusty tins. Among the rubbish, I found a sign which said, \'Anyone who leaves litter in these woods will be prosecuted!\'',1),(144,144,'He hasn\'t been served yet.\r\nHe will be served soon.','A: Hasn\'t anyone repaired this car yet?\r\nB: It has already been repaired.\r\nA: Hasn\'t anyone corrected the exercise books yet?\r\nB: They have already been corrected.\r\nA: Hasn\'t anyone caught the thief yet?\r\nB: He hasn\'t been caught yet. He will be caught soon.\r\nA: Hasn\'t anyone caught the thieves yet?\r\nB: They haven\'t been caught yet. They will be caught soon.',1),(145,1,'A private conversation','Last week I went to the theatre. I had a very good seat. The play was very interesting. I did not enjoy it. A young man and a young woman were sitting behind me. They were talking loudly. I got very angry. I could not hear the actors. I turned round. I looked at the man and the woman angrily. They did not pay any attention. In the end, I could not bear it. I turned round again. \'I can\'t hear a word!\' I said angrily.\r\n\'It\'s none of your business,\' the young man said rudely. \'This is a private conversation!\'',2),(146,2,'Breakfast or lunch?','It was Sunday. I never get up early on Sundays. I sometimes stay in bed until lunch time. Last Sunday I got up very late. I looked out of the window. It was dark outside. \'What a day!\' I thought. \'It\'s raining again.\' Just then, the telephone rang. It was my aunt Lucy. \'I\'ve just arrived by train,\' she said. \'I\'m coming to see you.\'\r\n\'But I\'m still having breakfast,\' I said.\r\n\'What are you doing?\' she asked.\r\n\'I\'m having breakfast,\' I repeated.\r\n\'Dear me,\' she said. \'Do you always get up so late? It\'s one o\'clock!\'',2),(147,3,'Please send me a card','Postcards always spoil my holidays. Last summer, I went to Italy. I visited museums and sat in public gardens. A friendly waiter taught me a few words of Italian. \'Then he lent me a book. I read a few lines, but I did not understand a word. Every day I thought about postcards. My holidays passed quickly, but I did not send any cards to my friends. On the last day I made a big decision. I got up early and bought thirty-seven cards. I spent the whole day in my room, but I did not write a single card!',2),(148,4,'An exciting trip','I have just received a letter from my brother, Tim. He is in Australia. He has been there for six months. Tim is an engineer. He is working for a big firm and he has already visited a great number of different places in Australia. He has just bought an Australian car and has gone to Alice Springs, a small town in the centre of Australia. He will soon visit Darwin. From there, he will fly to Perth. My brother has never been abroad before, so he is finding this trip very exciting.',2),(149,5,'No wrong numbers','Mr James Scott has a garage in Silbury and now he has just bought another garage in Pinhurst. Pinhurst is only five miles from Silbury, but Mr Scott cannot get a telephone for his new garage, so he has just bought twelve pigeons. Yesterday, a pigeon carried the first message from Pinhurst to Silbury. The bird covered the distance in three minutes. Up to now, Mr Scott has sent a great many requests for spare parts and other urgent messages from one garage to the other. In this way, he has begun his own private telephone service.',2),(150,6,'Percy Buttons','I have just moved to a house in Bridge Street. Yesterday a beggar knocked at my door. He asked me for a meal and a glass of beer. In return for this, the beggar stood on his head and sang songs. I gave him a meal. He ate the food and drank the beer. Then he put a piece of cheese in his pocket and went away. Later a neighbour told me about him. Everybody knows him. His name is Percy Buttons. He calls at every house in the street once a month and always asks for a meal and a glass of beer.',2),(151,7,'Too late','The plane was late and detectives were waiting at the airport all morning. They were expecting a valuable parcel of diamond from South Africa. A few hours earlier, someone had told the police that thieves would try to steal the diamonds. When the plane arrived, some of the detectives were waiting inside the main building while others were waiting on the airfield. Two men took the parcel off the plane and carried it into the Customs House. While two detectives were keeping guard at the door, two others opened the parcel. To their surprise, the precious parcel was full of stones and sand!',2),(152,8,'The best and the worst','Joe Sanders has the most beautiful garden in our town. Nearly everybody enters for \'The Nicest Garden Competition\' each year, but Joe wins every time. Bill Frith\'s garden is larger than Joe\'s. Bill works harder than Joe and grows more flowers and vegetables, but Joe\'s garden is more interesting. He has made neat paths and has built a wooden bridge over a pool. I like gardens too, but I do not like hard work. Every year I enter for the garden competition too, and I always win a little prize for the worst garden in the town!',2),(153,9,'A cold welcome','On Wednesday evening, we went to the Town Hall. It was the last day of the year and a large crowd of people had gathered under the Town Hall clock. It would strike twelve in twenty minutes\' time. Fifteen minutes passed and then, at five to twelve, the clock stopped. The big minute hand did not move. We waited and waited, but nothing happened. Suddenly someone shouted, \'It\'s two minutes past twelve! The clock has stopped!\' I looked at my watch. It was true. The big clock refused to welcome the New Year. At that moment everybody began to laugh and sing.',2),(154,10,'Not for jazz','We have an old musical instrument. It is called a clavichord. It was made in Germany in 1681. Our clavichord is kept in the living-room. It has belong to our family for a long time. The instrument was bought by my grandfather many years ago. Recently it was damaged by a visitor. She tried to play jazz on it! She struck the keys too hard and two of the strings were broken. My father was shocked. Now we are not allowed to touch it. It is being repaired by a friend of my father\'s.',2),(155,11,'One good turn deserves another','I was having dinner at a restaurant when Tony Steele came in. Tony worked in a lawyer\'s office years ago, but he is now working at a bank. He gets a good salary, but he always borrows money from his friends and never pays it back. Tony saw me and came and sat at the same table. He has never borrowed money from me. While he was eating, I asked him to lend me twenty pounds. To my surprise, he gave me the money immediately. \'I have never borrowed any money from you,\' Tony said, \'so now you can pay for my dinner!\'',2),(156,12,'Goodbye and good luck','Our neighbour, Captain Charles Alison, will sail from Portsmouth tomorrow. We\'ll meet him at the harbour early in the morning. He will be in his small boat, Topsail. Tapsail is a famous little boat. It has sailed across the Atlantic many times. Captain Alison will set out at eight o\'clock so we\'ll have plenty of time. We\'ll see his boat and then we\'ll say good-bye to him. He will be away for two months. We are very proud of him. He will take part in an important race across the Atlantic.',2),(157,13,'The Greenwood Boys','The Greenwood Boys are a group of popular singers. At present, they are visiting all parts of the country. They will be arriving here tomorrow. They will be coming by train and most of the young people in the town will be meeting them at the station. Tomorrow evening they will be singing at the Workers\' Club. The Greenwood Boys will be staying for five days. During this time, they will give five performances. As usual, the police will have a difficult time. They will be trying to keep order. It is always the same on these occasions.',2),(158,14,'Do you speak English?','I had an amusing experience last year. After I had left a small village in the south of France, I drove on to the next town. On the way, a young man waved to me. I stopped and he asked me for a lift. As soon as he had got into the car, I said good morning to him in French and he replied in the same language. Apart from a few words, I do not know any French at all. Neither of us spoke during the journey. I had nearly reached the town, when the young man suddenly said, very slowly, \'Do you speak English?\' As I soon learnt, he was English himself!',2),(159,15,'Good news','The secretary told me that Mr. Harmsworth would see me. I felt very nervous when I went into his office. He did not look up from his desk when I entered. After I had sat down, he said that business was very bad. He told me that the firm could not afford to pay such large salaries. Twenty people had already left. I knew that my turn had come.\r\n\'Mr. Harmsworth,\' I said in a weak voice.\r\n\'Don\'t interrupt,\' he said.\r\nThen he smiled and told me I would receive an extra thousand pounds a year!',2),(160,16,'A polite request','If you park your car in the wrong place, a traffic policeman will soon find it. You will be very lucky if he lets you go without a ticket. However, this does not always happen. Traffic police are sometimes very polite. During a holiday in Sweden, I found this note on my car: \'Sir, we welcome you to our city. This is a \"No Parking\" area. You will enjoy your stay here if you pay attention to our street signs. This note is only a reminder.\' If you receive a request like this, you cannot fail to obey it!',2),(161,17,'Always young','My aunt Jennifer is an actress. She must be at least thirty-five years old. In spite of this, she often appears on the stage as a young girl. Jennifer will have to take part in a new play soon. This time, she will be a girl of seventeen. In the play, she must appear in a bright red dress and long black stockings. Last year in another play, she had to wear short socks and a bright, orange-coloured dress. If anyone ever asked her how old she is, she always answers, \'My dear, it must be terrible to be grown up!\'',2),(162,18,'He often does this!','After I had had lunch at a village pub, I looked for my bag. I had left it on a chair beside the door and now it wasn\'t there! As I was looking for it, the landlord came in.\r\n\'Did you have a good meal?\' he asked.\r\n\'Yes, thank you,\' I answered, \'but I can\'t pay the bill. I haven\'t got my bag.\'\r\nThe landlord smiled and immediately went out. In a few minutes he returned with my bag and gave it back to me.\r\n\'I\'m very sorry,\' he said. \'My dog had taken it into the garden. He often does this.\'',2),(163,19,'Sold out','\'The play may begin at any moment,\' I said.\r\n\'It may have begun already,\' Susan answered.\r\n\'I hurried to the ticket-office. \'May I have two tickets please?\' I asked.\r\n\'I\'m sorry, we\'ve sold out,\' the girl said.\r\n\'What a pity!\' Susan exclaimed.\r\nJust then, a man hurried to the ticket-office.\r\n\'Can I return these two tickets?\' he asked.\r\n\'Certainly,\' the girl said.\r\n\'Could I have those two tickets please?\' I asked.\r\n\'Certainly, \'the girl said, \'but they\'re for next Wednesday\'s performance.\r\n\'I might as well have them,\' I said sadly.',2),(164,20,'One man in a boat','Fishing is my favourite sport. I often fish for hours without catching anything. But this does not worry me. Some fishermen are unlucky. Instead of catching fish, they catch old boots and rubbish. I am even less lucky. I never catch anything - not even old boots. After having spent whole mornings on the river, I always go home with an empty bag. \'You must give up fishing!\' my friends say. \'It\'s a waste of time.\' But they don\'t realize one important thing. I\'m not really interested in fishing. I am only interested in sitting in a boat and doing nothing at all!',2),(165,21,'Mad or not?','Aeroplanes are slowly driving me mad. I live near an airport and passing planes can be heard night and day. The airport was built during the war, but for some reason it could not be used then. Last year, however, it came into use. Over a hundred people must have been driven away from their homes by the noise. I am one of the few people left. Sometimes I think this house will be knocked down by a passing plane. I have been offered a large sum of money to go away, but I am determined to stay here. Everybody says I must be mad and they are probably right.',2),(166,22,'A glass envelope','My daughter, Jane, never dreamed of receiving a letter from a girl of her own age in Holland. Last year, we were travelling across the Channel and Jane put a piece of paper with her name and address on it into a bottle. She threw the bottle into the sea. She never thought of it again, but ten months later, she received a letter from a girl in Holland. Both girls write to each other regularly now. However, they have decided to use the post-office. Letters will cost a little more, but they will certainly travel faster.',2),(167,23,'A new house','I had a letter from my sister yesterday. She lives in Nigeria. In her letter, she said that she would come to England next year. If she comes, she will get a surprise. We are now living in a beautiful new house in the country. Work on it had begun before my sister left. The house was completed five months ago. In my letter, I told her that she could stay with us. The house has many large rooms and there is a lovely garden. It is a very modern house, so it looks strange to some people. It must be the only modern house in the district.',2),(168,24,'It could be worse','I entered the hotel manager\'s office and sat down. I had just lost 50 pounds and I felt very upset.\' I left the money in my room,\' I said, \'and it\'s not there now.\' The manager was sympathetic, but he could do nothing. \'Everyone\'s losing money these days,\' he said. He started to complain about this wicked world but was interrupted by a knock at the door. A girl came in and put an envelope on his desk. It contained 50 pounds. \'I found this outside this gentleman\'s room,\' she said. \'Well,\' I said to the manager, \'there is still some honesty in this world!\'',2),(169,25,'Do the English speak English?','I arrived in London at last. The railway station was big, black and dark. I did not know the way to my hotel, so I asked a porter. I not only spoke English very carefully, but very clearly as well. The porter, however, could not understand me. I repeated my question several times and at last he understood. He answered me, but he spoke neither slowly nor clearly. \'I am a foreigner,\' I said. Then he spoke slowly, but I could not understand him. My teacher never spoke English like that! The porter and I looked at each other and smiled. Then he said something and I understood it. \'You\'ll soon learn English!\' he said. I wonder. In England, each person speaks a different language. The English understand each other, but I don\'t understand them! Do they speak English?',3),(170,26,'The best art critics','I am an art student and I paint a lot of pictures. Many people pretend that they understand modern art. They always tell you what a picture is \'about\'. Of course, many pictures are not \'about\' anything. They are just pretty patterns. We like them in the same way that we like pretty curtain material. I think that young children often appreciate modern pictures better than anyone else. They notice more. My sister is only seven, but she always tells me whether my pictures are good or not. She came into my room yesterday.\'\r\nWhat are you doing ?\' she asked.\'\r\nI\'m hanging this picture on the wall,\' I answered. \'It\'s a new one. Do you like it?\'\r\nShe looked at it critically for a moment.\' It\'s all right,\' she said, \'but isn\'t it upside-down?\'\r\nI looked at it again. She was right! It was!',3),(171,27,'A wet night','Late in the afternoon, the boys put up their tent in the middle of a field. As soon as this was done, they cooked a meal over an open fire. They were all hungry and the food smelt good. After a wonderful meal, they told stories and sang songs by the camp fire. But some time later it began to rain. The boys felt tired so they put out the fire and crept into their tent. Their sleeping-bags were warm and comfortable, so they all slept soundly. In the middle of the night, two boys woke up and began shouting. The tent was full of water! They all leapt out of their sleeping-bags and hurried outside. It was raining heavily and they found that a stream had formed in the field. The stream wound its way across the field and then flowed right under their tent!',3),(172,28,'No parking','Jasper White is one of those rare people who believes in ancient myths. He has just bought a new house in the city, but ever since he moved in, he has had trouble with cars and their owners. when he returns home at night, he always finds that someone has parked a car outside his gate. Because of this, he has not been able to get his own car into his garage even once. Jasper has put up \'No Parking\' signs outside his gate, but these have not had any effect. Now he has put an ugly stone head over the gate. It is one of the ugliest faces I have ever seen. I asked him what it was and he told me that it was Medusa, the Gorgon. Jasper hopes that she will turn cars and their owners to stone. But none of them has been turned to stone yet!',3),(173,29,'Taxi!','Captain Ben Fawcett has bought an unusual taxi and has begun a new service. The \'taxi\' is a small Swiss aeroplane called a \'Pilatus Porter\'. This wonderful plane can carry seven passengers. The most surprising thing about it, however, is that it can land anywhere: on snow, water, or even on a ploughed field. Captain Fawcett\'s first passenger was a doctor who flew from Birmingham to a lonely village in the Welsh mountains. Since then, Captain Fawcett has flown passengers to many unusual places. Once he landed on the roof of a block of flats and on another occasion, he landed in a deserted car park. Captain Fawcett has just refused a strange request from a businessman. The man wanted to fly to Rockall, a lonely island in the Atlantic Ocean, but Captain Fawcett did not take him because the trip was too dangerous.',3),(174,30,'Football or polo?','The Wayle is a small river that cuts across the park near my home. I like sitting by the Wayle on fine afternoons. It was warm last Sunday, so I went and sat on the river bank as usual. Some children were playing games on the bank and there were some people rowing on the river. Suddenly, one of the children kicked a ball very hard and it went towards a passing boat. Some people on the bank called out to the man in the boat, but he did not hear them. The ball struck him so hard that he nearly fell into the water. I turned to look at the children, but there weren\'t any in sight: they had all run away! The man laughed when he realized what had happened. He called out to the children and threw the ball back to the bank.',3),(175,31,'Success story','Yesterday afternoon Frank Hawkins was telling me about his experiences as a young man. Before he retired, Frank was the head of a very large business company, but as a boy he used to work in a small shop. It was his job to repair bicycles and at that time he used to work fourteen hours a day. He saved money for years and in 1958 he bought a small workshop of his own. In his twenties Frank used to make spare parts for aeroplanes. At that time he had two helpers. In a few years the small workshop had become a large factory which employed seven hundred and twenty-eight people. Frank smiled when he remembered his hard early years and the long road to success. He was still smiling when the door opened and his wife came in. She wanted him to repair their grandson\'s bicycle!',3),(176,32,'Shopping made easy','People are not so honest as they once were. The temptation to steal is greater than ever before - especially in large shops. A detective recently watched a well-dressed woman who always went into a large store on Monday mornings. One Monday, there were fewer people in the shop than usual when the woman came in, so it was easier for the detective to watch her. The woman first bought a few small articles. After a little time, she chose one of the most expensive dresses in the shop and handed it to an assistant who wrapped it up for her as quickly as possible. Then the woman simply took the parcel and walked out of the shop without paying. When she was arrested, the detective found out that the shop assistant was her daughter. The girl \'gave\' her mother a free dress once a week!',3),(177,33,'Out of the darkness','Nearly a week passed before the girl was able to explain what had happened to her. One afternoon she set out from the coast in a small boat and was caught in a storm. Towards evening, the boat struck a rock and the girl jumped into the sea. Then she swam to the shore after spending the whole night in the water. During that time she covered a distance of eight miles. Early next morning, she saw a light ahead. She knew she was near the shore because the light was high up on the cliffs. On arriving at the shore, the girl struggled up the cliff towards the light she had seen. That was all she remembered. When she woke up a day later, she found herself in hospital.',3),(178,34,'Quick work','Dan Robinson has been worried all the week. Last Tuesday he received a letter from the local police. In the letter he was asked to call at the station. Dan wondered why he was wanted by the police, but he went to the station yesterday and now he is not worried any more. At the station, he was told by a smiling policeman that his bicycle had been found. Five days ago, the policeman told him, the bicycle was picked up in a small village four hundred miles away. It is now being sent to his home by train. Dan was most surprised when he heard the news. He was amused too, because he never expected the bicycle to be found. It was stolen twenty years ago when Dan was a boy of fifteen!',3),(179,35,'Stop thief!','Roy Trenton used to drive a taxi. A short while ago, however, he became a bus-driver and he was not regretted it. He is finding his new work far more exciting. When he was driving along Catford Street recently, he saw two thieves rush out of a shop and run towards a waiting car. One of them was carrying a bag full of money. Roy acted quickly and drove the bus straight at the thieves. The one with the money got such a fright that he dropped the bag. As the thieves were trying to get away in their car, Roy drove his bus into the back of it. While the battered car was moving away, Roy stopped his bus and telephoned the police. The thieves\' car was badly damaged and easy to recognize. Shortly afterwards, the police stopped the car and both men were arrested.',3),(180,36,'Across the Channel','Debbie Hart is going to swim across the English Channel tomorrow. She is going to set out from the French coast at five o\'clock in the morning. Debbie is only eleven years old and she hopes to set up a new world record. She is a strong swimmer and many people feel that she is sure to succeed. Debbie\'s father will set out with her in a small boat. Mr. Hart has trained his daughter for years. Tomorrow he will be watching her anxiously as she swims the long distance to England. Debbie intends to take short rests every two hours. She will have something to drink but she will not eat any solid food. Most of Debbie\'s school friends will be waiting for her on the English coast. Among them will be Debbie\'s mother, who swam the Channel herself when she was a girl.',3),(181,37,'The Olympic Games','The Olympic Games will be held in our country in four years\' time. As a great many people will be visiting the country, the government will be building new hotels, an immense stadium, and a new Olympic-standard swimming pool. They will also be building new roads and a special railway line. The Games will be held just outside the capital and the whole area will be called \'Olympic City\'. Workers will have completed the new roads by the end of this year. By the end of next year, they will have finished work on the new stadium. The fantastic modern buildings have been designed by Kurt Gunter. Everybody will be watching anxiously as the new buildings go up. We are all very excited and are looking forward to the Olympic Games because they have never been held before in this country.',3),(182,38,'Everything except the weather','My old friend, Harrison, had lived in the Mediterranean for many years before he returned to England. He had often dreamed of retiring in England and had planned to settle down in the country. He had no sooner returned than he bought a house and went to live there. Almost immediately he began to complain about the weather, for even though it was still summer, it rained continually and it was often bitterly cold. After so many years of sunshine, Harrison got a shock. He acted as if he had never lived in England before. In the end, it was more than he could bear. He had hardly had time to settle down when he sold the house and left the country. The dream he had had for so many years ended there. Harrison had thought of everything except the weather.',3),(183,39,'Am I all right?','While John Gilbert was in hospital, he asked his doctor to tell him whether his operation had been successful, but the doctor refused to do so. The following day, the patient asked for a bedside telephone. When he was alone, he telephoned the hospital exchange and asked for Doctor Millington. When the doctor answered the phone, Mr. Gilbert said he was inquiring about a certain patient, a Mr. John Gilbert. He asked if Mr. Gilbert\'s operation had been successful and the doctor told him that it had been. He then asked when Mr. Gilbert would be allowed to go home and the doctor told him that he would have to stay in hospital for another two weeks. Then Dr. Millington asked the caller if he was a relative of the patient. \'No,\' the patient answered, \'I am Mr. John Gilbert.\'',3),(184,40,'Food and talk','Last week at a dinner party, the hostess asked me to sit next to Mrs. Rumbold. Mrs. Rumbold was a large, unsmiling lady in a tight black dress. She did not even look up when I took my seat beside her. Her eyes were fixed on her plate and in a short time, she was busy eating. I tried to make conversation.\r\n\'A new play is coming to \"The Globe\" soon,\' I said. \'Will you be seeing it?\'\r\n\'No,\' she answered.\r\n\'Will you be spending your holidays abroad this year?\' I asked.\r\n\'No,\' she answered.\r\n\'Will you be staying in England?\' I asked.\r\n\'No,\' she answered.\r\nIn despair, I asked her whether she was enjoying her dinner.\r\n\'Young man,\' she answered, \'if you ate more and talked less, we would both enjoy our dinner!\'',3),(185,41,'Do you call that a hat?','\'Do you call that a hat?\' I said to my wife.\r\n\'You needn\'t be so rude about it,\' my wife answered as she looked at herself in the mirror.\r\nI sat down on one of those modern chairs with holes in it and waited. We had been in the hat shop for half an hour and my wife was still in front of the mirror.\r\n\'We mustn\'t buy things we don\'t need,\' I remarked suddenly. I regretted saying it almost at once.\r\n\'You needn\'t have said that,\' my wife answered.\' I needn\'t remind you of that terrible tie you bought yesterday.\'\r\n\'I find it beautiful,\' I said. \'A man can never have too many ties.\'\r\n\'And a woman can\'t have too many hats,\' she answered.\r\nTen minutes later we walked out of the shop together. My wife was wearing a hat that looked like a lighthouse!',3),(186,42,'Not very musical','As we had had a long walk through one of the markets of Old Delhi, we stopped at a square to have a rest. After a time, we noticed a snake-charmer with two large baskets at the other side of the square, so we went to have a look at him. As soon as he saw us, he picked up a long pipe which was covered with coins and opened one of the baskets. When he began to play a tune, we had our first glimpse of the snake. It rose out of the basket and began to follow the movements of the pipe. We were very much surprised when the snake charmer suddenly began to play jazz tunes and modern pop songs. The snake, however, continued to \'dance\' slowly. It obviously could not tell the difference between Indian music and jazz!',3),(187,43,'Over the South Pole','In 1929, three years after his flight over the North Pole, the American explorer, R.E. Byrd, successfully flew over the South Pole for the first time. Though, at first, Byrd and his men were able to take a great many photographs of the mountains that lay below, they soon ran into serious trouble. At one point, it seemed certain that their plane would crash. It could only get over the mountains if it rose to 10,000 feet. Byrd at once ordered his men to throw out two heavy food sacks. The plane was then able to rise and it cleared the mountains by 400 feet. Byrd now knew that he would be able to reach the South Pole which was 300 miles away, for there were no more mountains in sight. The aircraft was able to fly over the endless white plains without difficulty.',3),(188,44,'Through the forest','Mrs. Anne Sterling did not think of the risk she was taking when she ran through a forest after two men. They had rushed up to her while she was having a picnic at the edge of a forest with her children and tried to steal her handbag. In the struggle, the strap broke and, with the bag in their possession, both men started running through the trees. Mrs. Sterling got so angry that she ran after them. She was soon out of breath, but she continued to run. When she caught up with them, she saw that they had sat down and were going through the contents of the bag, so she ran straight at them. The men got such a fright that they dropped the bag and ran away. \'The strap needs mending,\' said Mrs. Sterling later, \'but they did not steal anything.\'',3),(189,45,'A clear conscience','The whole village soon learnt that a large sum of money had been lost. Sam Benton, the local butcher, had lost his wallet while taking his savings to the post office. Sam was sure that the wallet must have been found by one of the villagers, but it was not returned to him. Three months passed, and then one morning, Sam found his wallet outside his front door. It had been wrapped up in newspaper and it contained half the money he had lost, together with a note which said: \'A thief, yes, but only 50 per cent a thief!\' Two months later, some more money was sent to Sam with another note: \'Only 25 per cent a thief now!\' In time, all Sam\'s money was paid back in this way. The last note said:\' I am 100 per cent honest now!\'',3),(190,46,'Expensive and uncomfortable','When a plane from London arrived at Sydney airport, workers began to unload a number of wooden boxes which contained clothing. No one could account for the fact that one of the boxes was extremely heavy. It suddenly occurred to one of the workers to open up the box. He was astonished at what he found. A man was lying in the box on top of a pile of woollen goods. He was so surprised at being discovered that he did not even try to run away. After he was arrested, the man admitted hiding in the box before the plane left London. He had had a long and uncomfortable trip, for he had been confined to the wooden box for over ten hours. The man was ordered to pay 3,500 pounds for the cost of the trip. The normal price of a ticket is 2,000 pounds!',3),(191,47,'A thirsty ghost','A public house which was recently bought by Mr. Ian Thompson is up for sale. Mr. Thompson is going to sell it because it is haunted. He told me that he could not go to sleep one night because he heard a strange noise coming from the bar. The next morning, he found that the doors had been blocked by chairs and the furniture had been moved. Though Mr. Thompson had turned the lights off before he went to bed, they were on in the morning. He also said that he had found five empty whisky bottles which the ghost must have drunk the night before. When I suggested that some villagers must have come in for a free drink, Mr. Thompson shook his head. The villagers have told him that they will not accept the pub even if he gives it away.',3),(192,48,'Did you want to tell me something?','Dentists always ask questions when it is impossible for you to answer. My dentist had just pulled out one of my teeth and had told me to rest for a while. I tried to say something, but my mouth was full of cotton wool. He knew I collected match boxes and asked me whether my collection was growing. He then asked me how my brother was and whether I liked my new job in London. In answer to these questions I either nodded or made strange noises. Meanwhile, my tongue was busy searching out the hole where the tooth had been. I suddenly felt very worried, but could not say anything. When the dentist at last removed the cotton wool from my mouth, I was able to tell him that he had pulled out the wrong tooth.',3),(193,49,'The end of a dream','Tired of sleeping on the floor, a young man in Teheran saved up for years to buy a real bed. For the first time in his life, he became the proud owner of a bed which had springs and a mattress. Because the weather was very hot, he carried the bed on to the roof of his house. He slept very well for the first two nights, but on the third night, a storm blew up. A gust of wind swept the bed off the roof and sent it crashing into the courtyard below. The young man did not wake up until the bed had struck the ground. Although the bed was smashed to pieces, the man was miraculously unhurt. When he woke up, he was still on the mattress. Glancing at the bits of wood and metal that lay around him, the man sadly picked up the mattress and carried it into his house. After he had put it on the floor, he promptly went to sleep again.',4),(194,50,'Taken for a ride','I love travelling in the country, but I don\'t like losing my way.\r\nI went on an excursion recently, but my trip took me longer than I expected.\r\n\'I\'m going to Woodford Green,\' I said to the conductor as I got on the bus, \'but I don\'t know where it is.\'\r\n\'I\'ll tell you where to get off,\' answered the conductor.\r\nI sat in the front of the bus to get a good view of the countryside. After some time, the bus stopped. Looking round, I realized with a shock that I was the only passenger left on the bus.\r\n\'You\'ll have to get off here,\' the conductor said. \'This is as far as we go.\'\r\n\'Is this Woodford Green?\' I asked.\r\n\'Oh dear,\' said the conductor suddenly. \'I forgot to put you off.\'\r\n\'It doesn\'t matter,\' I said. \'I\'ll get off here.\'\r\n\'We are going back now,\' said the conductor.\r\n\'Well, in that case, I prefer to stay on the bus,\' I answered.',4),(195,51,'Reward for virtue','My friend, Hugh, has always been fat, but things got so bad recently that he decided to go on a diet. He began his diet a week ago. First of all, he wrote out a long list of all the foods which were forbidden. The list included most of the things Hugh loves: butter, potatoes, rice, beer, milk, chocolate, and sweets. Yesterday I paid him a visit. I rang the bell and was not surprised to see that Hugh was still as fat as ever. He led me into his room and hurriedly hid a large parcel under his desk. It was obvious that he was very embarrassed. When I asked him what he was doing, he smiled guiltily and then put the parcel on the desk. He explained that his diet was so strict that he had to reward himself occasionally. Then he showed me the contents of the parcel. It contained five large bars of chocolate and three bags of sweets!',4),(196,52,'A pretty carpet','We have just moved into a new house and I have been working hard all morning. I have been trying to get my new room in order. This has not been easy because I own over a thousand books. To make matters worse, the room is rather small, so I have temporarily put my books on the floor. At the moment, they cover every inch of floor space and I actually have to walk on them to get in or out of the room. A short while ago, my sister helped me to carry one of my old bookcases up the stairs. She went into my room and got a big surprise when she saw all those books on the floor. \'This is the prettiest carpet I have ever seen,\' she said. She gazed at it for some time then added, \'You don\'t need bookcases at all. You can sit here in your spare time and read the carpet!\'',4),(197,53,'Hot snake','At last firemen have put out a big forest fire in California. Since then, they have been trying to find out how the fire began. Forest fire are often caused by broken glass or by cigarette ends which people carelessly throw away. Yesterday the firemen examined the ground carefully, but were not able to find any broken glass. They were also quite sure that a cigarette end did not start the fire. This morning, however, a fireman accidentally discovered the cause. He noticed the remains of a snake which was wound round the electric wires of a 16,000-volt power line. In this way, he was able to solve the mystery. The explanation was simple but very unusual. A bird had snatched up the snake from the ground and then dropped it on to the wires. The snake then wound itself round the wires. When it did so, it sent sparks down to the ground and these immediately started a fire.',4),(198,54,'Sticky fingers','After breakfast, I sent the children to school and then I went to market. It was still early when I returned home. The children were at school, my husband was at work and the house was quiet. So I decided to make some meat pies. In a short time I was busy mixing butter and flour and my hands were soon covered with sticky pastry. At exactly that moment, the telephone rang. Nothing could have been more annoying. I picked up the receiver between two sticky fingers and was dismayed when I recognized the voice of Mrs. Bates. It took me ten minutes to persuade her to ring back later. At last I hung up the receiver. What a mess! There was pastry on my fingers, on the telephone, and on the doorknobs. I had no sooner got back to the kitchen than the doorbell rang loud enough to wake the dead. This time it was the postman and he wanted me to sign for a registered letter!',4),(199,55,'Not a gold mine','Dreams of finding lost treasure almost came true recently. A new machine called \'The Revealer\' has been invented and it has been used to detect gold which has been buried in the ground. The machine was used in a cave near the seashore where - it is said - pirates used to hide gold. The pirates would often bury gold in the cave and then fail to collect it. Armed with the new machine, a search party went into the cave hoping to find buried treasure. The leader of the party was examining the soil near the entrance to the cave when the machine showed that there was gold under the ground. Very excited, the party dug a hole two feet deep. They finally found a small gold coin which was almost worthless. The party then searched the whole cave thoroughly but did not find anything except an empty tin trunk. In spite of this, many people are confident that \'The Revealer\' may reveal something of value fairly soon.',4),(200,56,'Faster than sound!','Once a year a race is held for old cars. A lot of cars entered for this race last year and there was a great deal of excitement just before it began. One of the most handsome cars was a Rolls-Royce Silver Ghost. The most unusual car was a Benz which had only three wheels. Built in 1885, it was the oldest car taking part. After a great many loud explosions, the race began. Many of the cars broke down on the course and some drivers spent more time under their cars than in them! A few cars, however, completed the race. The winning car reached a speed of forty miles an hour - much faster than any of its rivals. It sped downhill at the end of the race and its driver had a lot of trouble trying to stop it. The race gave everyone a great deal of pleasure. It was very different from modern car races but no less exciting.',4),(201,57,'Can I help you, madam?','A woman in blue jeans stood at the window of an expensive shop. Though she hesitated for a moment, she finally went in and asked to see a dress that was in the window. The assistant who served her did not like the way she was dressed. Glancing at her scornfully, he told her that the dress was sold. The woman walked out of the shop angrily and decided to punish the assistant next day. She returned to the shop the following morning dressed in a fur coat, with a handbag in one hand and a long umbrella in the other. After seeking out the rude assistant she asked for the same dress. Not realizing who she was, the assistant was eager to serve her this time. With great difficulty, he climbed into the shop window to get the dress. As soon as she saw it, the woman said she did not like it. She enjoyed herself making the assistant bring almost everything in the window before finally buying the dress she had first asked for.',4),(202,58,'A blessing in disguise?','The tiny village of Frinley is said to possess a \'cursed tree\'. Because the tree was mentioned in a newspaper, the number of visitors to Frinley has now increased. The tree was planted near a church fifty years ago, but it is only in recent years that it has gained an evil reputation. It is said that if anyone touches the tree, he will have bad luck; if he picks a leaf, he will die. Many villagers believe that the tree has already claimed a number of victims. The vicar has been asked to have the tree cut down, but so far he has refused. He has pointed out that the tree is a useful source of income as tourists have been coming from all parts of the country to see it. In spite of all that has been said, the tourists have been picking leaves and cutting their names on the tree-trunk. So far, not one of them has been struck down by sudden death!',4),(203,59,'In or out','Our dog, Rex, used to sit outside our front gate and bark. Every time he wanted to come into the garden he would bark until someone opened the gate. As the neighbours complained of the noise, my husband spent weeks training him to press his paw on the latch to let himself in. Rex soon became an expert at opening the gate. However, when I was going out shopping last week, I noticed him in the garden near the gate. This time he was barking so that someone would let him out! Since then, he has developed another bad habit. As soon as he opens the gate from the outside, he comes into the garden and waits until the gate shuts. Then he sits and barks until someone lets him out. After this he immediately lets himself in and begins barking again. Yesterday my husband removed the gate and Rex got so annoyed we have not seen him since.',4),(204,60,'The future','At a village fair, I decided to visit a fortune-teller called Madam Bellinsky. I went into her tent and she told me to sit down. After I had given her some money, she looked into a crystal ball and said: \'A relation of yours is coming to see you. She will be arriving this evening and intends to stay for a few days. The moment you leave this tent, you will get a big surprise. A woman you know well will rush towards you. She will speak to you and then she will lead you away from this place. That is all.\'\r\nAs soon as I went outside, I forgot all about Madam Bellinsky because my wife hurried towards me. \'Where have you been hiding?\' she asked impatiently. \'Your sister will be here in less than an hour and we must be at the station to meet her. We are late already.\' As she walked away, I followed her out of the fair.',4),(205,61,'Trouble with the Hubble','The Hubble telescope was launched into space by NASA on April 20, 1990 at a cost of over a billion dollars. Right from the start there was trouble with the Hubble. The pictures it sent us were very disappointing because its main mirror was faulty! NASA is now going to put the telescope right, so it will soon be sending up four astronauts to repair it. The shuttle Endeavour will be taking the astronauts to he Hubble. A robot-arm from the Endeavour will grab the telescope and hold it while the astronauts make the necessary repairs. Of course, the Hubble is above the earth\'s atmosphere, so it will soon be sending us the clearest pictures of the stars and distant galaxies that we have ever seen. The Hubble will tell us a great deal about the age and size of the universe. Bythe time you read this, the Hubble\'s eagle eye will have sent us thousands and thousands of wonderful pictures.',4),(206,62,'After the fire','Firemen had been fighting the forest fire for nearly three weeks before they could get it under control. A short time before, great trees had covered the countryside for miles around. Now, smoke still rose up from the warm ground over the desolate hills. Winter was coming on and the hills threatened the surrounding villages with destruction, for heavy rain would not only wash away the soil but would cause serious floods as well. When the fire had at last been put out, the forest authorities ordered several tons of a special type of grass-seed which would grow quickly. The seed was sprayed over the ground in huge quantities by aeroplanes. The planes had been planting seed for nearly a month when it began to rain. By then, however, in many places the grass had already taken root. In place of the great trees which had been growing there for centuries, patches of green had begun to appear in the blackened soil.',4),(207,63,'She was not amused','Jeremy Hampden has a large circle of friends and is very popular at parties. Everybody admires him for his fine sense of humor - everybody, that is, except his six-year-old daughter, Jenny. Recently, one of Jeremy\'s closest friends asked him to make a speech at a wedding reception. This is the sort of thing that Jeremy loves. He prepared the speech carefully and went to the wedding with Jenny. He had included a large number of funny stories in the speech and, of course, it was a great success. As soon as he had finished, Jenny told him she wanted to go home. Jeremy was a little disappointed by this but he did as his daughter asked. On the way home, he asked Jenny if she had enjoyed the speech. To his surprise, she said she hadn\'t. Jeremy asked her why this was so and she told him that she did not like to see so many people laughing at him!',4),(208,64,'The Channel Tunnel','In l858, a French engineer, Aime Thome de Gamond, arrived in England with a plan for a twenty-one-mile tunnel across the English Channel. He said that it would be possible to build a platform in the centre of the Channel. This platform would serve as a port and a railway station. The tunnel would be well-ventilated if tall chimneys were built above sea level. In 1860, a better plan was put forward by an Englishman, William Low. He suggested that a double railway tunnel should be built. This would solve the problem of ventilation, for if a train entered this tunnel, it would draw in fresh air behind it. Forty-two years later a tunnel was actually begun. If, at the time, the British had not feared invasion, it would have been completed. The world had to wait almost 100 years for the Channel Tunnel. It was officially opened on March 7, 1994, finally connecting Britain to the European continent.',4),(209,65,'Jumbo versus the police','Last Christmas, the circus owner, Jimmy Gates, decided to take some presents to a children\'s hospital. Dressed up as Father Christmas and accompanied by a \'guard of honour\' of six pretty girls, he set off down the main street of the city riding a baby elephant called Jumbo. He, should have known that the police would never allow this sort of thing. A policeman approached Jimmy and told him he ought to have gone along a side street as Jumbo was holding up the traffic. Though Jimmy agreed to go at once, Jumbo refused to move. Fifteen policemen had to push very hard to get him off the main street. The police had a difficult time, but they were most amused. \'Jumbo must weigh a few tons,\' said a policeman afterwards, \'so it was fortunate that we didn\'t have to carry him. Of course, we should arrest him, but as he has a good record, we shall let him off this time.\'',4),(210,66,'Sweet as honey!','In 1963 a Lancaster bomber crashed on Wallis Island, a remote place in the South Pacific, a long way west of Samoa. The plane wasn\'t too badly damaged, but over the years, the crash was forgotten and the wreck remained undisturbed. Then in 1989, twenty-six years after the crash, the plane was accidentally rediscovered in an aerial survey of the island. By this time, a Lancaster bomber in reasonable condition was rare and worth rescuing. The French authorities had the plane packaged and moved in parts back to France. Now a group of enthusiasts are going to have the plane restored. It has four Rolls-Royce Merlin engines, but the group will need to have only three of them rebuilt. Imagine their surprise and delight when they broke open the packing cases and found that the fourth engine was sweet as honey - still in perfect condition. A colony of bees had turned the engine into a hive and it was totally preserved in beeswax!',4),(211,67,'Volcanoes','Haroun Tazieff the Polish scientist, has spent his lifetime studying active volcanoes and deep caves in all parts of the world. In 1948, he went to lake Kivu in the Congo to observe a new volcano which he later named Kituro. Tazieff was able to set up his camp very close to the volcano while it was erupting violently. Though he managed to take a number of brilliant photographs, he could not stay near the volcano for very long. He noticed that a river of liquid rock was coming towards him. It threatened to surround him completely, but Tazieff managed to escape just in time. He waited until the volcano became quiet and he was able to return two days later. This time, he managed to climb into the mouth of Kituro so that he could take photographs and measure temperatures. Tazieff has often risked his life in this way. He has been able to tell us more about active volcanoes than any man alive.',4),(212,68,'Persistent','I crossed the street to avoid meeting him, but he saw me and came running towards me. It was no use pretending that I had not seen him, so I waved to him. I never enjoy meeting Nigel Dykes. He never has anything to do. No matter how busy you are, he always insists on coming with you. I had to think of a way of preventing him from following me around all morning.\r\n\'Hello, Nigel,\' I said. \'Fancy meeting you here!\'\r\n\'Hi, Elizabeth,\' Nigel answered. \'I was just wondering how to spend the morning - until I saw you. You\'re not busy doing anything, are you?\'\r\n\'No, not at all,\' I answered.\' I\'m going to ...\'\r\n\'Would you mind my coming with you?\' he asked, before I had finished speaking.\r\n\'Not at all,\' I lied, \'but I\'m going to the dentist.\'\r\n\'Then I\'ll come with you,\' he answered. \'There\'s always plenty to read in the waiting room!\'',4),(213,69,'But not murder!','I was being tested for a driving licence for the third time. I had been asked to drive in heavy traffic and had done so successfully. After having been instructed to drive out of town, I began to acquire confidence. Sure that I had passed, I was almost beginning to enjoy my test. The examiner must have been pleased with my performance, for he smiled and said, \'Just one more thing, Mr. Eames. Let us suppose that a child suddenly crosses the road in front of you. As soon as I tap on the window, you must stop within five feet.\' I continued driving and after some time, the examiner tapped loudly. Though the sound could be heard clearly, it took me a long time to react. I suddenly pressed the brake pedal hard and we were both thrown forward. The examiner looked at me sadly. \'Mr Eames,\' he said, in a mournful voice, \'you have just killed that child!\'',4),(214,70,'Red for danger','During a bullfight, a drunk suddenly wandered into the middle of the ring. The crowd began to shout, but the drunk was unaware of the danger. The bull was busy with the matador at the time, but it suddenly caught sight of the drunk who was shouting rude remarks and waving a red cap. Apparently sensitive to criticism, the bull forgot all about the matador and charged at the drunk. The crowd suddenly grew quiet. The drunk, however, seemed quite sure of himself. When the bull got close to him, he clumsily stepped aside to let it pass. The crowd broke into cheers and the drunk bowed. By this time, however, three men had come into the ring and they quickly dragged the drunk to safety. Even the bull seemed to feel sorry for him, for it looked on sympathetically until the drunk was out of the way before once more turning its attention to the matador.',4),(215,71,'A famous clock','When you visit London, one of the first things you will see is Big Ben, the famous clock which can be heard all over the world on the B.B.C. If the Houses of Parliament had hot been burned down in 1834, the great clock would never have been erected. Big Ben takes its name from Sir Benjamin Hall who was responsible for the making of the clock when the new Houses of Parliament were being built. It is not only of immense size, but is extremely accurate as well. Officials from Greenwich Observatory have the clock checked twice a day. On the B.B.C. you can hear the clock when it is actually striking because microphones are connected to the clock tower. Big Ben has rarely gone wrong. Once, however, it failed to give the correct time. A painter who had been working on the tower hung a pot of paint on one of the hands and slowed it down!',4),(216,72,'A car called Bluebird','The great racing driver, Sir Malcolm Campbell, was the first man to drive at over 300 miles per hour. He set up a new world record in September 1935 at Bonneville Salt Flats, Utah. Bluebird, the car he was driving, had been specially built for him. It was over 30 feet in length and had a 2,500-horsepower engine. Although Campbell reached a speed of over 304 miles per hour, he had great difficulty in controlling the car because a tyre burst during the first run. After his attempt, Campbell was disappointed to learn that his average speed had been 299 miles per hour. However, a few days later, he was told that a mistake had been made. His average speed had been 301 miles per hour. Since that time, racing drivers have reached speeds of over 600 miles an hour. Following his father\'s footsteps many years later, Sir Malcolm\'s son, Donald, also set up a world record. Like his father, he was driving a car called Bluebird.',4),(217,73,'The record-holder','Children who play truant from school are unimaginative. A quiet day\'s fishing, or eight hours in a cinema seeing the same film over and over again, is usually as far as they get. They have all been put to shame by a boy who, while playing truant, travelled 1,600 miles. He hitchhiked to Dover and, towards evening, went into a boat to find somewhere to sleep. When he woke up next morning, he discovered that the boat had, in the meantime, travelled to Calais. No one noticed the boy as he crept off. From there, he hitchhiked to Paris in a lorry. The driver gave him a few biscuits and a cup of coffee and left him just outside the city. The next car the boy stopped did not take him into the centre of Paris as he hoped it would, but to Perpignan on the French-Spanish border. There he was picked up by a policeman and sent back to England by the local authorities. He has surely set up a record for the thousands of boys who dream of evading school.',5),(218,74,'Out of the limelight','An ancient bus stopped by a dry river bed and a party of famous actors and actresses got off. Dressed in dark glasses and old clothes, they had taken special precautions so that no one should recognize them. But as they soon discovered, disguises can sometimes be too perfect.\r\n\'This is a wonderful place for a picnic,\' said Gloria Gleam.\r\n\'It couldn\'t be better, Gloria,\' Brinksley Meers agreed. \'No newspaper men, no film fans! Why don\'t we come more often?\'\r\nMeanwhile, two other actors, Rockwall Slinger and Merlin Greeves, had carried two large food baskets to a shady spot under some trees. When they had all made themselves comfortable, a stranger appeared. He looked very angry. \'Now you gut out of here, all of you!\' he shouted. \'I\'m sheriff here. Do you see that notice? It says \"No Camping\" - in case you can\'t read!\'\r\n\'Look, sheriff,\' said Rockwall, \'don\'t be too hard on us. I\'m Rockwall Slinger and this is Merlin Greeves.\'\r\n\'Oh, is it?\' said the sheriff with a sneer. \'Well, I\'m Brinksley Meers, and my other name is Gloria Gleam. Now you get out of here fast!\'',5),(219,75,'SOS','When a light passenger plane flew off course some time ago, it crashed in the mountains and its pilot was killed. The only passengers, a young woman and her two baby daughters, were unhurt. It was the middle of winter. Snow lay thick on the ground. The woman knew that the nearest village was miles away. When it grew dark. she turned a suitcase into a bed and put the children inside it, covering them with all the clothes she could find. During the night, it got terribly cold. The woman kept as near as she could to the children and even tried to get into the case herself, but it was too small. Early next morning she heard planes passing overhead and wondered how she could send a signal. Then she had an idea. She stamped out the letters \'SOS\' in the snow. Fortunately, a pilot saw the signal and sent a message by radio to the nearest town. It was not long before a helicopter arrived on the scene to rescue the survivors of the plane crash.',5),(220,76,'April Fools Day','\'To end our special news bulletin,\' said the voice of the television announcer,\' we are taking you to the macaroni fields of Calabria. Macaroni has been grown in this area for over six hundred years. Two of the leading growers, Giuseppe Moldova and Ricardo Brabante, tell me that they have been expecting a splendid crop this year and harvesting has begun earlier than usual. Here you can see two workers who, between them, have just finished cutting three cart-loads of golden brown macaroni stalks. The whole village has been working day and night gathering and threshing this year\'s crop before the September rains. On the right, you can see Mrs. Brabante herself. She has been helping her husband for thirty years now. Mrs. Brabante is talking to the manager of the local factory where the crop is processed. This last scene shows you what will happen at the end of the harvest: the famous Calabrian macaroni-eating competition! Signor Fratelli, the present champion, has won it every year since 1991. And that ends our special bulletin for today, Thursday, April 1st. We are now returning you to the studio.\'',5),(221,77,'A successful operation','The mummy of an Egyptian woman who died in 800 B.C. has just had an operation. The mummy is that of Shepenmut who was once a singer in the Temple of Thebes. As there were strange marks on the X-ray plates taken of the mummy, doctors have been trying to find out whether the woman died of a rare disease. The only way to do this was to operate. The operation, which lasted for over four hours, proved to be very difficult because of the hard resin which covered the skin. The doctors removed a section of the mummy and sent it to a laboratory. They also found something which the X-ray plate did not show. a small wax figure of the god Duamutef. This god which has the head of a cow was normally placed inside a mummy. The doctors have not yet decided how the woman died. They feared that the mummy would fall to pieces when they cut it open, but fortunately this has not happened. The mummy successfully survived the operation.',5),(222,78,'The last one?','After reading an article entitled \'Cigarette Smoking and Your Health\' I lit a cigarette to calm my nerves. I smoked with concentration and pleasure as I was sure that this would be my last cigarette. For a whole week I did not smoke at all and during this time, my wife suffered terribly. I had all the usual symptoms of someone giving up smoking: a bad temper and an enormous appetite. My friends kept on offering me cigarettes and cigars. They made no effort to hide their amusement whenever I produced a packet of sweets from my pocket. After seven days of this I went to a party. Everybody around me was smoking and I felt extremely uncomfortable. When my old friend Brian urged me to accept a cigarette, it was more than I could bear. I took one guiltily, lit it and smoked with satisfaction. My wife was delighted that things had returned to normal once more. Anyway, as Brian pointed out, it is the easiest thing in the world to give up smoking. He himself has done it lots of times!',5),(223,79,'By air','I used to travel by air a great deal when I was a boy. My parents, used to live in South America and I used to fly there from Europe in the holidays. An airhostess would take charge of me and I never had an unpleasant experience. I am used to travelling by air and only on one occasion have I ever felt frightened. After taking off, we were flying low over the city and slowly gaining height, when the plane suddenly turned round and flew back to the airport. While we were waiting to land, a flight atendant told us to keep calm and to get off the plane quietly as soon as it had touched down. Everybody on board was worried and we were curious to find out what had happened. Later we learnt that there was a very important person on board. The police had been told that a bomb had been planted on the plane. After we had landed, the plane was searched thoroughly. Fortunately, nothing was found and five hours later we were able to take off again.',5),(224,80,'The Crystal Palace','Perhaps the most extraordinary building of the nineteenth century was the Crystal Palace, which was built in Hyde Park for the Great Exhibition of 1851. The Crystal Palace was different from all other buildings in the world, for it was made of iron and glass. It was one of the biggest buildings of all time and a lot of people from many countries came to see it. A great many goods were sent to the exhibition from various parts of the world. There was also a great deal of machinery on display. The most wonderful piece of machinery on show was Nasmyth\'s steam hammer. Though in those days, travelling was not as easy as it is today, steam boats carried thousands of visitors across the Channel from Europe. On arriving in England, they were taken to the Crystal Palace by train. There were six million visitors in all, and the profits from the exhibition were used to build museums and colleges. Later, the Crystal Palace was moved to South London. It remained one of the most famous buildings in the world until it was burnt down in 1936.',5),(225,81,'Escape','When he had killed the guard, the prisoner of war quickly dragged him into the bushes. Working rapidly in the darkness, he soon changed into the dead man\'s clothes. Now, dressed in a blue uniform and with a rifle over his shoulder, the prisoner marched boldly up and down in front of the camp. He could hear shouting in the camp itself. Lights were blazing and men were running here and there: they had just discovered that a prisoner had escaped. At that moment, a large black car with four officers inside it, stopped at the camp gates. The officers got out and the prisoner stood to attention and saluted as they passed. When they had gone, the driver of the car came towards him. The man obviously wanted to talk. He was rather elderly with grey hair and clear blue eyes. The prisoner felt sorry for him, but there was nothing else he could do. As the man came near, the prisoner knocked him to the ground with a sharp blow. Then, jumping into the car, he drove off as quickly as he could.',5),(226,82,'Monster or fish?','Fishermen and sailors sometimes claim to have seen monsters in the sea. Though people have often laughed at stories told by seamen, it is now known that many of these \'monsters\' which have at times been sighted are simply strange fish. Occasionally, unusual creatures are washed to the shore, but they are rarely caught out at sea. Some time ago, however, a peculiar fish was caught near Madagascar. A small fishing boat was carried miles out to sea by the powerful fish as it pulled on the line. Realizing that this was no ordinary fish, the fisherman made every effort not to damage it in any way. When it was eventually brought to shore, it was found to be over thirteen feet long. It had a head like a horse, big blue eyes, shining silver skin, and a bright red tail, The fish, which has since been sent to a museum where it is being examined by a scientist, is called an oarfish. Such creatures have rarely been seen alive by man as they live at a depth of six hundred feet.',5),(227,83,'After the elections','The former Prime Minister, Mr. Wentworth Lane, was defeated in the recent elections. He is now retiring from political life and has gone abroad. My friend, Patrick, has always been a fanatical opponent of Mr. Lane\'s Radical Progressive Party. After the elections, Patrick went to the former Prime Minister\'s house. When he asked if Mr. Lane lived there, the policeman on duty told him that since his defeat, the ex-Prime Minister had gone abroad. On the following day, Patrick went to the house again. The same policeman was just walking slowly past the entrance, when Patrick asked the same question. Though a little suspicious this time, the policeman gave him the same answer. The day after, Patrick went to the house once more and asked exactly the same question. This time, the policeman lost his temper. \'I told you yesterday and the day before yesterday,\' he shouted, \'Mr. Lane was defeated in the elections. He has retired from political life and gone to live abroad!\'\r\n\'I know,\' answered Patrick, \'but I love to hear you say it!\'',5),(228,84,'On strike','Busmen have decided to go on strike next week. The strike is due to begin on Tuesday. No one knows how long it will last. The busmen have stated that the strike will continue until general agreement is reached about pay and working conditions. Most people believe that the strike will last for at least a week. Many owners of private cars are going to offer \'free rides\' to people on their way to work. This will relieve pressure on the trains to some extent. Meanwhile, a number of university students have volunteered to drive buses while the strike lasts. All the young men are expert drivers, but before they drive any of the buses, they will have to pass a special test. The students are going to take the test in two days\' time. Even so, people are going to find it difficult to get to work. But so far, the public has expressed its gratitude to the students in letters to the Press. Only one or two people have objected that the students will drive too fast!',5),(229,85,'Never too old to learn','I have just received a letter from my old school, informing me that my former headmaster, Mr. Stuart Page, will be retiring next week. Pupils of the school, old and new, will be sending him a present to mark the occasion. All those who have contributed towards the gift will sign their names in a large album which will be sent to the headmaster\'s home. We shall all remember Mr. Page for his patience and understanding and for the kindly encouragement he gave us when we went so unwillingly to school. A great many former pupils will be attending a farewell dinner in his honour next Thursday. It is a curious coincidence that the day before his retirement, Mr. Page will have been teaching for a total of forty years. After he has retired, he will devote himself to gardening. For him, this will be an entirely new hobby. But this does not matter, for, as he has often remarked, one is never too old to learn.',5),(230,86,'Out of control','As the man tried to swing the speedboat round, the steering wheel came away in his hands. He waved desperately to his companion, who had been water skiing for the last fifteen minutes. Both men had hardly had time to realize what was happening when they were thrown violently into the sea. The speedboat had struck a buoy, but it continued to move very quickly across the water. Both men had just begun to swim towards the shore. when they noticed with dismay that the speedboat was moving in a circle. It now came straight towards them at tremendous speed. In less than a minute, it roared past them only a few feet away. After it had passed, they swam on as quickly as they could because they knew that the boat would soon return. They had just had enough time to swim out of danger when the boat again completed a circle. On this occasion, however, it had slowed down considerably. The petrol had nearly all been used up. Before long, the noise dropped completely and the boat began to drift gently across the water.',5),(231,87,'A perfect alibi','\'At the time the murder was committed, I was travelling on the 8.0 o\'clock train to London,\' said the man.\r\n\'Do you always catch such an early train?\' asked the inspector.\r\n\'Of course I do,\' answered the man. \'I must be at work at 10 o\'clock. My employer will confirm that I was there on time.\'\r\n\'Would a later train get you to work on time?\' asked the inspector.\r\n\'I suppose it would, but I never catch a later train.\'\r\n\'At what time did you arrive at the station?\'\r\n\'At ten to eight. I bought a paper and waited for the train.\'\r\n\'And you didn\'t notice anything unusual?\'\r\n\'Of course not.\'\r\n\'I suggest,\' said the inspector, \'that you are not telling the truth. I suggest that you did not catch the 8 o\'clock train, but that you caught the 8.25 which would still get you to work on time. You see, on the morning of the murder, the 8 o\'clock train did not run at all. It broke down at Ferngreen station and was taken off the line.\'',5),(232,88,'Trapped in a mine','Six men have been trapped in a mine for seventeen hours. If they are not brought to the surface soon they may lose their lives. However, rescue operations are proving difficult. If explosives are used, vibrations will cause the roof of the mine to collapse. Rescue workers are therefore drilling a hole on the north side of the mine. They intend to bring the men up in a special capsule. If there had not been a hard layer of rock beneath the soil, they would have completed the job in a few hours. As it is, they have been drilling for sixteen hours and they still have a long way to go. Meanwhile, a microphone, which was lowered into the mine two hours ago, has enabled the men to keep in touch with the closest relatives. Though they are running out of food and drink, the men are cheerful and confident that they will get out soon. They have been told that rescue operations are progressing smoothly. If they knew how difficult it was to drill through the hard rock, they would lose heart.',5),(233,89,'A slip of the tongue','People will do anything to see a free show - even if it is a bad one. When the news got round that a comedy show would be presented at our local cinema by the P. and U. Bird Seed Company, we all rushed to see it. We had to queue for hours to get in and there must have been several hundred people present just before the show began. Unfortunately, the show was one of the dullest we have ever seen. Those who failed to get in need not have felt disappointed, as many of the artistes who should have appeared did not come. The only funny things we heard that evening came from the advertiser at the beginning of the programme. He was obviously very nervous and for some minutes stood awkwardly before the microphone. As soon as he opened his mouth, everyone burst out laughing. We all know what the poor man should have said, but what he actually said was: \'This is the Poo and Ee Seed Bird Company. Good ladies, evening and gentlemen!\'',5),(234,90,'What\'s for supper?','Fish and chips has always been a favourite dish in Britain, but as the oceans have been overfished, fish has become more and more expensive. So it comes as a surprise to learn that giant fish are terrifying the divers on North Sea oil rigs. Oil rigs have to be repaired frequently and divers, who often have to work in darkness a hundred feet under water, have been frightened out of their wits by giant fish bumping into them as they work. Now they have had special cages made to protect them from these monsters. The fish are not sharks or killer whales, but favourite eating varieties like cod and skate which grow to unnatural sizes, sometimes as much as twelve feet in length. Three factors have caused these fish to grow so large: the warm water round the hot oil pipes under the sea; the plentiful supply of food thrown overboard by the crews on the rigs; the total absence of fishing boats around the oil rigs. As a result, the fish just eat and eat and grow and grow in the lovely warm water. Who eats who?',5),(235,91,'Three men in a basket','A pilot noticed a balloon which seemed to be making for a Royal Air Force Station nearby. He informed the station at once, but no one there was able to explain the mystery. The officer in the control tower was very angry when he heard the news, because balloons can be a great danger to aircraft. He said that someone might be spying on the station and the pilot was ordered to keep track of the strange object. The pilot managed to circle the balloon for some time. He could make out three men in a basket under it and one of them was holding a pair of binoculars. When the balloon was over the station, the pilot saw one of the men taking photographs. Soon afterwards, the balloon began to descend and it landed near an airfield. The police were called in, but they could not arrest anyone, for the basket contained two Members of Parliament and the Commanding Officer of the station! As the Commanding Officer explained later, one half of the station did not know what the other half was doing!',5),(236,92,'Asking for trouble','It must have been about two in the morning when I returned home. I tried to wake up my wife by ringing the doorbell, but she was fast asleep, so I got a ladder from the shed in the garden, put it against the wall, and began climbing towards the bedroom window. I was almost there when a sarcastic voice below said, \'I don\'t think the windows need cleaning at this time of the night.\' I looked down and nearly fell off the ladder when I saw a policeman. I immediately regretted answering in the way I did, but I said, \'I enjoy cleaning windows at night.\'\r\n\'So do I,\' answered the policeman in the same tone. \'Excuse my interrupting you. I hate to interrupt a man when he\'s busy working, but would you mind coming with me to the station?\'\r\n\'Well, I\'d prefer to stay here,\' I said. \'You see, I\'ve forgotten my key.\'\r\n\'Your what?\' he called.\r\n\'My key,\' I shouted.\r\nFortunately, the shouting woke up my wife who opened the window just as the policeman had started to climb towards me.',5),(237,93,'A noble gift','One of the most famous monuments in the world, the Statue of Liberty, was presented to the United States of America in the nineteenth century by the people of France. The great statue, which was designed by the sculptor Auguste Bartholdi, took ten years to complete. The actual figure was made of copper supported by a metal framework which had been especially constructed by Eiffel. Before it could be transported to the United States, a site had to be found for it and a pedestal had to be built. The site chosen was an island at the entrance of New York Harbour. By 1884, a statue which was 151 feet tall had been erected in Paris. The following year, it was taken to pieces and sent to America. By the end of October 1886, the statue had been put together again and it was officially presented to the American people by Bartholdi. Ever since then, the great monument has been a symbol of liberty for the millions of people who have passed through New York Harbour to make their homes in America.',5),(238,94,'Future champions','Experiments have proved that children can be instructed in swimming at a very early age. At a special swimming pool in Los Angeles, children become expert at holding their breath under water even before they can walk. Babies of two months old do not appear to be reluctant to enter the water, It is not long before they are so accustomed to swimming that they can pick up weights from the floor of the pool. A game that is very popular with these young swimmers is the underwater tricycle race. Tricycles are lined up on the floor of the pool seven feet under water. The children compete against each other to reach the other end of the pool. Many pedal their tricycles, but most of them prefer to push or drag them. Some children can cover the whole length of the pool without coming up for breath even once. Whether they will ever become future Olympic champions, only time will tell. Meanwhile, they should encourage those among us who cannot swim five yards before they are gasping for air.',5),(239,95,'fantasy','When the Ambassador of Escalopia returned home for lunch, his wife got a shock. He looked pale and his clothes were in a frightful state.\r\n\'What has happened?\' she asked. \'How did your clothes get into such a mess?\'\r\n\'A fire extinguisher, my dear,\' answered the Ambassador drily. \'University students set the Embassy on fire this morning.\'\r\n\'Good heavens!\' exclaimed his wife. \'And where were you at the time?\'\r\n\'I was in my office as usual,\' answered the Ambassador. \'The fire broke out in the basement. I went down immediately, of course, and that fool, Horst, aimed a fire extinguisher at me. He thought I was on fire. I must definitely get that fellow posted.\'\r\nThe Ambassador\'s wife went on asking questions, when she suddenly noticed a big hole in her husband\'s hat.\r\n\'And how can you explain that?\' she asked.\r\n\'Oh, that,\' said the Ambassador. \'Someone fired a shot through my office window. Accurate, don\'t you think? Fortunately, I wasn\'t wearing it at the time. If I had been, I would not have been able to get home for lunch.\'',5),(240,96,'The dead return','A Festival for the Dead is held once a year in Japan. This festival is a cheerful occasion, for on this day, the dead are said to return to their homes and they are welcomed by the living. As they are expected to be hungry after their long journey, food is laid out for them. Specially-made lanterns are hung outside each house to help the dead to find their way. All night long, people dance and sing. In the early morning, the food that had been laid out for the dead is thrown into a river or into the sea as it is considered unlucky for anyone living to eat it. In towns that are near the sea, the tiny lanterns which had been hung in the streets the night before, are placed into the water when the festival is over. Thousands of lanterns slowly drift out to sea guiding the dead on their return journey to the other world. This is a moving spectacle, for crowds of people stand on the shore watching the lanterns drifting away until they can be seen no more.',5),(241,1,'A Puma at large','Pumas are large, cat-like animals which are found in America. When reports came into London Zoo that a wild puma had been spotted forty-five miles south of London, they were not taken seriously. However, as the evidence began to accumulate, experts from the Zoo felt obliged to investigate, for the descriptions given by people who claimed to have seen the puma were extraordinarily similar.\r\nThe hunt for the puma began in a small village where a woman picking blackberries saw \'a large cat\' only five yards away from her. It immediately ran away when she saw it, and experts confirmed that a puma will not attack a human being unless it is cornered. The search proved difficult, for the puma was often observed at one place in the morning and at another place twenty miles away in the evening. Wherever it went, it left behind it a trail of dead deer and small animals like rabbits. Paw prints were seen in a number of places and puma fur was found clinging to bushes. Several people complained of \'cat-like noises\' at night and a businessman on a fishing trip saw the puma up a tree. The experts were now fully convinced that the animal was a puma, but where had it come from? As no pumas had been reported missing from any zoo in the country, this one must have been in the possession of a private collector and somehow managed to escape. The hunt went on for several weeks, but the puma was not caught. It is disturbing to think that a dangerous wild animal is still at large in the quiet countryside.',6),(242,2,'Thirteen equals one','Our vicar is always raising money for one cause or another, but he has never managed to get enough money to have the church clock repaired. The big clock which used to strike the hours day and night was damaged many years ago and has been silent ever since.\r\nOne night, however, our vicar work up with a start: the clock was striking the hours! Looking at his watch, he saw that it was one o\'clock, but the bell struck thirteen times before it stopped. Armed with a torch, the vicar went up into the clock tower to see what was going on. In the torchlight, he caught sight of a figure whom he immediately recognized as Bill Wilkins, our local grocer.\r\n\'Whatever are you doing up here Bill?\' asked the vicar in surprise.\r\n\'I\'m trying to repair the bell,\' answered Bill. \'I\'ve been coming up here night after night for weeks now. You see, I was hoping to give you a surprise.\'\r\n\'You certainly did give me a surprise!\' said the vicar. \'You\'ve probably woken up everyone in the village as well. Still, I\'m glad the bell is working again.\'\r\nThat\'s the trouble, vicar,\' answered Bill. \'It\'s working all right, but I\'m afraid that at one o\'clock it will strike thirteen times and there\'s nothing I can do about it.\'\r\nWe\'ll get used to that, Bill,\' said the vicar. \'Thirteen is not as good as one, but it\'s better than nothing. Now let\'s go downstairs and have a cup of tea.\'',6),(243,3,'An unknown goddess','Some time ago, and interesting discovery was made by archaeologists on the Aegean island of Kea. An American team explored a temple which stands in an ancient city on the promontory of Ayia Irini. The city at one time must have been prosperous, for it enjoyed a high level of civilization. Houses - often three storeys high - were built of stone. They had large rooms with beautifully decorated walls. The city was equipped with a drainage system, for a great many clay pipes were found beneath the narrow streets.\r\nThe temple which the archaeologists explored was used as a place of worship from the fifteenth century B.C. until Roman times. In the most sacred room of temple, clay fragments of fifteen statues were found. Each of these represented a goddess and had, at one time, been painted. The body of one statue was found among remains dating from the fifteenth century B.C. It\'s missing head happened to be among remains of the fifth century B.C. This head must have been found in Classical times and carefully preserved. It was very old and precious even then. When the archaeologists reconstructed the fragments, they were amazed to find that the goddess turned out to be a very modern-looking woman. She stood three feet high and her hands rested on her hips. She was wearing a full-length skirt which swept the ground. Despite her great age, she was very graceful indeed, but, so far, the archaeologists have been unable to discover her identity.',6),(244,4,'The double life of Alfred Bloggs','These days, people who do manual work often receive far more money than people who work in offices. People who work in offices are frequently referred to as \'white-collar workers\' for the simple reason that they usually wear a collar and tie to go to work. Such is human nature, that a great many people are often willing to sacrifice higher pay for the privilege of becoming white-collar workers. This can give rise to curious situations, as it did in the case of Alfred Bloggs who worked as a dustman for the Ellesmere Corporation.\r\nWhen he got married, Alf was too embarrassed to say anything to his wife about his job. He simply told her that he worked for the Corporation. Every morning, he left home dressed in a smart black suit. He then changed into overalls and spent the next eight hours as a dustman. Before returning home at night. He took a shower and changed back into his suit. Alf did this for over two years and his fellow dustmen kept his secret Alf\'s wife has never discovered that she married a dustman and she never will, for Alf has just found another job. He will soon be working in an office. He will be earning only half as much as he used to, but he feels that his rise in status is well worth the loss of money. From now on, he will wear a suit all day and others will call him \'Mr. Bloggs\', not \'Alf\'.',6),(245,5,'The facts','Editors of newspapers and magazines often go to extremes to provide their reader with unimportant facts and statistics. Last year a journalist had been instructed by a well-known magazine to write an article on the president\'s palace in a new African republic. When the article arrived, the editor read the first sentence and then refuse to publish it. The article began: \'Hundreds of steps lead to the high wall which surrounds the president\'s palace\'. The editor at once sent the journalist a fax instructing him to find out the exact number of steps and the height of the wall.\r\nThe journalist immediately set out to obtain these important facts, but the took a long time to send them. Meanwhile, the editor was getting impatient, for the magazine would soon go to press. He sent the journalist two more faxes, but received no reply. He sent yet another fax informing the journalist that if he did not reply soon he would be fired. When the journalist again failed to reply, the editor reluctantly published the article as it had originally been written. A week later, the editor at last received a fax from the journalist. Not only had the poor man been arrested, but he had been sent to prison as well. However, he had at last been allowed to send a fax in which he informed the editor that the he had been arrested while counting the 1,084 steps leading to the fifteen-foot wall which surrounded the president\'s palace.',6),(246,6,'Smash-and-grab','The expensive shops in a famous near Piccadilly were just opening. At this time of the morning, the arcade was almost empty. Mr. Taylor, the owner of a jewellery shop was admiring a new window display. Two of his assistants had been working busily since eight o\'clock and had only just finished. Diamond necklaces and rings had been beautifully arranged on a background of black velvet. After gazing at the display for several minutes, Mr. Taylor went back into his shop.\r\nThe silence was suddenly broken when a large car, with its headlights on and its horn blaring, roared down the arcade. It came to a stop outside the jeweller\'s. One man stayed at the wheel while two others with black stockings over their faces jumped out and smashed the window of the shop with iron bars. While this was going on, Mr. Taylor was upstairs. He and his staff began throwing furniture out of the window. Chairs and tables went flying into the arcade. One of the thieves was struck by a heavy statue, but he was too busy helping himself to diamonds to notice any pain. The raid was all over in three minutes, for the men scrambled back into the car and it moved off at a fantastic speed. Just as it was leaving, Mr. Taylor rushed out and ran after it throwing ashtrays and vases, but it was impossible to stop the thieves. They had got away with thousands of pounds worth of diamonds.',6),(247,7,'Mutilated Ladies','Has it ever happened to you? Have you ever put your trousers in the washing machine and then remembered there was a large bank note in your back pocket? When you rescued your trousers, did you find the note was whiter than white? People who live in Britain needn\'t despair when they made mistakes like this (and a lot of people do)! Fortunately for them, the Bank of England has a team called Mutilated Ladies which deals with claims from people who fed their money to a machine or to their dog. Dogs, it seems, love to chew up money!\r\nA recent case concerns Jane Butlin whose fiance, John, runs a successful furniture business. John had very good day and put his wallet containing $3,000 into the microwave oven for safekeeping. Then he and Jane went horse-riding. When they got home, Jane cooked their dinner in the microwave oven and without realizing it, cooked her fiance\'s wallet as well. Imagine their dismay when they found a beautifully-cooked wallet and notes turned to ash! John went to see his bank manager who sent the remains of wallet and the money to the special department of the Bank of England in Newcastle: the Mutilate Ladies! They examined the remains and John got all his money back. \'So long as there\'s something to identify, we will give people their money back,\' said a spokeswoman for the Bank. \'Last year, we paid $1.5m on 21,000 claims.',6),(248,8,'A famous monastery','The Great St. Bernard Pass connects Switzerland to Italy. At 2,473 metres, it is the highest mountain pass in Europe. The famous monastery of St. Bernard, which was founded in eleventh century, lies about a mile away. For hundreds of years, St. Bernard dogs have saved the lives of travellers crossing the dangerous Pass. These friendly dogs, which were first brought from Asia, were used as watchdogs even in Roman times. Now that a tunnel ahs been built through the mountains, the Pass is less dangerous, but each year, the dogs are still sent out into the snow whenever a traveller is in difficulty. Despite the new tunnel, there are still a few people who rashly attempt to cross the Pass on foot.\r\nDuring the summer months, the monastery is very busy, for it is visited by thousands of people who cross the Pass in cars. As there are so many people about, the dogs have to be kept in a special enclosure. In winter, however, life at the monastery is quite different. The temperature drops to -30 degrees and very few people attempt to cross the Pass. The monks prefer winter to summer of they have more privacy. The dogs have greater freedom, too, for they are allowed to wander outside their enclosure. The only regular visitors to the monastery in winter are parties of skiers who go there at Christmas and Easter. These young people, who love the peace of mountains, always receive a warm welcome at St. Bernard\'s monastery.',6),(249,9,'Flying cats','Cats never fail to fascinate human beings. They can be friendly and affectionate towards humans, but they lead mysterious lives of their own as well. They never become submissive like dogs and horses. As a result, humans have learned to respect feline independence. Most cats remain suspicious of humans all their lives. One of the things that fascinates us most about cats is the popular belief that they have nine lives. Apparently, there is a good deal of truth in this idea. A cat\'s ability to survive falls is based on fact.\r\nRecently the New York Animal Medical Center made a study of 132 cats over a period of five months. All these cats had one experience in common: they had fallen off high buildings, yet only eight of them died from shock or injuries. Of course, New York is the ideal place for such an interesting study, because there is no shortage of tall buildings. There are plenty of high-rise windowsills to fall from! One cat, Sabrina, fell 32 storeys, yet only suffered from a broken tooth. \'Cats behave like well-trained paratroopers.\' a doctor said. It seems that the further cats fall, the less they are likely to injure themselves. In a long drop, they reach speeds of 60 miles an hour and more. At high speeds, falling cats have time to relax. They stretch out their legs like flying squirrels. This increases their air-resistance and reduces the shock of impact when they hit the ground.',6),(250,10,'The loss of the Titanic','The great ship, Titanic, sailed for New York from Southampton on April 10th, 1912. She was carrying 1,316 passengers and crew of 891. Even by modern standards, the 46,000 ton Titanic was a colossal ship. At that time, however, she was not only the largest ship that had ever been built, but was regarded as unsinkable, for she had sixteen watertight compartments. Even if two of these were flooded, she would still be able to float. The tragic sinking of this great liner will always be remembered, for she went down on her first voyage with heavy loss of life.\r\nFour days after setting out, while the Titanic was sailing across the icy water of the North Atlantic, huge iceberg was suddenly spotted by a lookout. After the alarm had been given, the great ship turned sharply to avoid a direct collision. The Titanic turned just in time, narrowly missing the immense walk of ice which rose over 100 feet out of the water beside her. Suddenly, there was a slight trembling sound from below, and the captain went down to see what had happened. The noise had been so faint that no one though that the ship had been damaged. Below, the captain realized to his horror that the Titanic was sinking rapidly, for five of her sixteen watertight compartments had already been flooded! The order to abandon ship was given and hundreds of people plunged into the icy water. As there were not enough lifeboats for everybody, 1,500 lives were lost.',6),(251,11,'Not guilty','Customs Officers are quite tolerant these days, but they can still stop you when you are going through the Green Channel and have nothing to declare. Even really honest people are often made to feel guilty. The hardened professional smuggler, on the other hand, is never troubled by such feelings, even if he has five hundred gold watches hidden in his suitcase. When I returned form abroad recently, a particularly officious young Customs Officer clearly regarded me as a smuggler.\r\n\'Have you anything to declare?\' he asked, looking me in the eye.\r\n\'No\', I answered confidently.\r\n\'Would you mind unlocking this suitcase please?\'\r\n\'Not at all,\' I answered.\r\nThe Officer went through the case with great care. All the thing I had packed so carefully were soon in a dreadful mess. I felt sure I would never be able to close the case again. Suddenly, I saw the Officer\'s face light up. He had spotted a tiny bottle at the bottom of my case and he pounced on it with delight.\r\n\'Perfume, eh?\' he asked sarcastically. \'You should have declared that. Perfume is not exempt from import duty.\'\r\n\'But it isn\'t perfume,\' I said. \'It\'s hair gel.\' Then I added with a smile, \'It\'s a strange mixture I make myself.\'\r\nAs I expected, he did not believe me.\r\n\'Try it!\' I said encouragingly.\r\nThe officer unscrewed the cap and put the bottle to his nostrils. He was greeted by an unpleasant smell which convinced him that I was telling the truth. A few minutes later, I was able to hurry away with precious chalk marks on my baggage.',6),(252,12,'Life on a desert island','Most of us have formed an unrealistic picture of life on a desert island. We sometimes imagine a desert island to be a sort of paradise where the sun always shines. Life there is simple and good. Ripe fruit falls from the trees and you never have to work. The other side of the picture is quite the opposite. Life on a desert island is wretched. You either starve to death or live like Robinson Crusoe, waiting for a boat which never comes. Perhaps there is an element of truth in both these pictures, but few of us have had the opportunity to find out.\r\nTwo men who recently spent five days on a coral island wished they had stayed there longer. They were taking a badly damaged boat from the Virgin Islands to Miami to have it repaired. During the journey, their boat began to sink. They quickly loaded a small rubber dinghy with food, matches, and cans of beer and rowed for a few miles across the Caribbean until they arrived at a tiny coral island. There were hardly any trees on the island and there was no water, but this did not prove to be a problem. The men collected rainwater in the rubber dinghy. As they had brought a spear gun with them, they had plenty to eat. They caught lobster and fish every day, and, as one of them put it \'ate like kings\'. When a passing tanker rescued them five days later, both men were genuinely sorry that they had to leave.',6),(253,13,'\'It\'s only me\'','After her husband had gone to work. Mrs. Richards sent her children to school and went upstairs to her bedroom. She was too excited to do any housework that morning, for in the evening she would be going to a fancy-dress part with her husband. She intended to dress up as a ghost and as she had made her costume the night before, she was impatient to try it on. Though the costume consisted only of a sheet, it was very effective. After putting it on, Mrs. Richards went downstairs. She wanted to find out whether it would be comfortable to wear.\r\nJust as Mrs. Richards was entering the dinning room, there was a knock on the front door. She knew that it must be the baker. She had told him to come straight in if ever she failed to open the door and to leave the bread on the kitchen table. Not wanting to frighten the poor man, Mrs. Richards quickly hid in the small storeroom under the stairs. She heard the front door open and heavy footsteps in the hall. Suddenly the door of the storeroom was opened and a man entered. Mrs. Richards realized that it must be the man from the Electricity Board who had come to read the metre. She tried to explain the situation, saying \'It\'s only me\', but it was too late. The man let out cry and jumped back several paces. When Mrs. Richards walked towards him, he fled, slamming the door behind him.',6),(254,14,'A noble gangster','There was a tine when the owners of shops and businesses in Chicago that to pay large sums of money to gangsters in return for \'protection\'. If the money was not paid promptly, the gangsters would quickly put a man out of business by destroying his shop. Obtaining \'protection money\' is not a modern crime. As long ago as the fourteenth century, an Englishman, Sir John Hawkwood, made the remarkable discovery that people would rather pay large sums of money than have their life work destroyed by gangsters.\r\nSix hundred years ago, Sir Johan Hawkwood arrived in Italy with a band of soldiers and settled near Florence. He soon made a name for himself and came to be known to the Italians as Giovanni Acuto. Whenever the Italian city-states were at war with each other, Hawkwood used to hire his soldiers to princes who were willing to pay the high price he demanded. In times of peace, when business was bad, Hawkwood and his men would march into a city-state and, after burning down a few farms, would offer to go away if protection money was paid to them. Hawkwood made large sums of money in this way. In spite of this, the Italians regarded him as a sort of hero. When he died at the age of eighty, the Florentines gave him a state funeral and had a picture painted which was dedicated to the memory of \'the most valiant soldier and most notable leader, Signor Giovanni Haukodue.\'',6),(255,15,'Fifty pence worth of trouble','Children always appreciate small gifts of money. Mum or dad, of course, provide a regular supply of pocket money, but uncles and aunts are always a source of extra income. With some children, small sums go a long way. If fifty pence pieces are not exchanged for sweets, they rattle for months inside money boxes. Only very thrifty children manage to fill up a money box. For most of them, fifty pence is a small price to pay for a nice big bar of chocolate.\r\nMy nephew, George, has a money box but it is always empty. Very few of the fifty pence pieces and pound coins I have given him have found their way there. I gave him fifty pence yesterday and advised him to save it. Instead he bought himself fifty pence worth of trouble. On his way to the sweet shop, he dropped his fifty pence and it bounced along the pavement and then disappeared down a drain. George took off his jacket, rolled up his sleeves and pushed his right arm through the drain cover. He could not find his fifty pence piece anywhere, and what is more, he could not get his arm out. A crowd of people gathered round him and a lady rubbed his arm with soap and butter, but George was firmly stuck. The fire brigade was called and two fire fighters freed George using a special type of grease. George was not too upset by his experience because the lady who owns the sweet shop heard about his troubles and rewarded him with large box of chocolates.',6),(256,16,'Mary had a little lamb','Mary and her husband Dimitri lived in the tiny village of Perachora in southern Greece. One of Mary\'s prize possessions was a little white lamb which her husband had given her. She kept it tied to a tree in a field during the day and went to fetch it every evening. One evening, however, the lamb was missing. The rope had been cut, so it was obvious that the lamb had been stolen.\r\nWhen Dimitri came in from the fields, his wife told him what had happened. Dimitri at once set out to find the thief. He knew it would not prove difficult in such a small village. After telling several of his friends about the theft, Dimitri found out that his neighbour, Aleko, had suddenly acquired a new lamb. Dimitri immediately went to Aleko\'s house and angrily accused him of stealing the lamb. He told him he had better return it or he would call the police. Aleko denied taking it and led Dimitri into his backyard. It was true that he had just bought a lamb, he explained, but his lamb was black. Ashamed of having acted so rashly, Dimitri apologized to Aleko for having accused him. While they were talking it began to rain and Dimitri stayed in Aleko\'s house until the rain stopped. When he went outside half an hour later, he was astonished to find the little black lamb was almost white. Its wool, which had been dyed black, had been washed clean by the rain!',6),(257,17,'The longest suspension bridge in the world','Verrazano, an Italian about whom little is known, sailed into New York Harbour in 1524 and named it Angouleme. He described it as \'a very agreeable situation located within two small hills in the midst of which flowed a great river.\' Though Verrazano is by no means considered to be a great explorer, his name will probably remain immortal, for on November 21st, 1964, the longest suspension bridge in the world was named after him.\r\nThe Verrazano Bridge, which was designed by Othmar Ammann, joins Brooklyn to Staten Island. It has a span of 4,260 feet. The bridge is so long that the shape of the earth had to be taken into account by its designer. Two great towers support four huge cables. The towers are built on immense underwater platforms made of steel and concrete. The platforms extend to a depth of over 100 feet under the sea. These alone took sixteen months to build. Above the surface of the water, the towers rise to a height of nearly 700 feet. They support the cables from which the bridge has been suspended. Each of the four cables contains 26,108 lengths of wire. It has been estimated that if the bridge were packed with cars, it would still only be carrying a third of its total capacity. However, size and strength are not the only important things about this bridge. Despite its immensity, it is both simple and elegant, fulfilling its designer\'s dream to create \'an enormous object drawn as faintly as possible\'.',6),(258,18,'Electric currents in modern art','Modern sculpture rarely surprises us any more. The idea that modern art can only be seen in museums is mistaken. Even people who take no interest in art cannot have failed to notice examples of modern sculpture on display in public places. Strange forms stand in gardens, and outside buildings and shops. We have got quite used to them. Some so-called \'modern\' pieces have been on display for nearly eighty years.\r\nIn spite of this, some people - including myself - were surprise by a recent exhibition of modern sculpture. The first thing I saw when I entered the art gallery was a notice which said: \'Do not touch the exhibits. Some of them are dangerous!\' The objects on display were pieces of moving sculpture. Oddly shaped forms that are suspended form the ceiling and move in response to a gust of wind are quite familiar to everybody. These objects, however, were different. Lined up against the wall, there were long thin wires attached to metal spheres. The spheres had been magnetized and attracted or repelled each other all the time. In the centre of the hall, there were a number of tall structures which contained coloured lights. These lights flickered continuously like traffic lights which have gone mad. Sparks were emitted from small black boxes and red lamps flashed on and off angrily. It was rather like an exhibition of prehistoric electronic equipment. These peculiar forms not only seemed designed to shock people emotionally, but to give them electric shocks as well!',6),(259,19,' A very dear cat','Kidnappers are rarely interested in animals, but they recently took considerable interest in Mrs. Eleanor Ramsay\'s cat. Mrs. Eleanor Ramsay, a very wealthy old lady, has shared a flat with her cat, Rastus, for a great many years. Rastus leads an orderly life. He usually takes a short walk in the evenings and is always home by seven o\'clock. One evening, however, he failed to arrive. Mrs. Ramsay got very worried. She looked everywhere for him but could not find him.\r\nThere days after Rastus\' disappearance, Mrs. Ramsay received an anonymous letter. The writer stated that Rastus was in safe hands and would be returned immediately if Mrs. Ramsay paid a ransom of $1,000. Mrs. Ramsay was instructed to place the money in a cardboard box and to leave it outside her door. At first she decided to go to the police, but fearing that she would never see Rastus again - the letter had made that quite clear - she changed her mind. She withdrew $1,000 from her bank and followed the kidnapper\'s instructions. The next morning, the box had disappeared but Mrs. Ramsay was sure that the kidnapper would keep his word. Sure enough, Rastus arrived punctually at seven o\'clock that evening. He looked very well, though he was rather thirsty, for he drank half a bottle of milk. The police were astounded when Mrs. Ramsay told them what she had done. She explained that Rastus was very dear to her. Considering the amount she paid, he was dear in more ways than one!',6),(260,20,'Pioneer pilots','In 1908 Lord Northcliffe offered a prize of $1,000 to the first man who would fly across the English Channel. Over a year passed before the first attempt was made. On July 19th, 1909, in the early morning, Hubert Latham took off from the French coast in his plane the \'Antoinette IV.\' He had travelled only seven miles across the Channel when his engine failed and he was forced to land on the sea. The \'Antoinette\' floated on the water until Latham was picked up by a ship.\r\nTwo days alter, Louis Bleriot arrived near Calais with a plane called \'No. XI\'. Bleriot had been making planes since 1905 and this was his latest model. A week before, he had completed a successful overland flight during which he covered twenty-six miles. Latham, however, did not give up easily. He, too, arrived near Calais on the same day with a new \'Antoinette\'. It looked as if there would be an exciting race across the Channel. Both planes were going to take off on July 25th, but Latham failed to get up early enough, After making a short test flight at 4.15 a.m., Bleriot set off half an hour later. His great flight lasted thirty-seven minutes. When he landed near Dover, the first person to greet him was a local policeman. Latham made another attempt a week later and got within half a mile of Dover, but he was unlucky again. His engine failed and he landed on the sea for the second time.',6),(261,21,'Daniel Mendoza','Boxing matches were very popular in England two hundred years ago. In those days, boxers fought with bare fists for prize money. Because of this, they were known as \'prizefighters\'. However, boxing was very crude, for these were no rules and a prizefighter could be seriously injured or even killed during a match.\r\nOne of the most colourful figures in boxing history was Daniel Mendoza, who was born in 1764. The use of gloves was not introduced until 1860, when the Marquis of Queensberry drew up the first set of rules. Though he was technically a prizefighter, Mendoza did much to change crude prizefighting into a sport, for he brought science to the game. In his day, Mendoza enjoyed tremendous popularity. He was adored by rich and poor alike.\r\nMendoza rose to fame swiftly after a boxing match when he was only fourteen years old. This attracted the attention of Richard Humphries who was then the most eminent boxer in England. He offered to train Mendoza and his young pupil was quick to learn. In fact, Mendoza soon became so successful that Humphries turned against him. The two men quarrelled bitterly and it was clear that the argument could only be settled by a fight. A match was held at Stilton, where both men fought for an hour. The public bet a great deal of money on Mendoza, but he was defeated. Mendoza met Humphries in the ring on a later occasion and he lost for a second time. It was not until his third match in 1790 that he finally beat Humphries and became Champion of England. Meanwhile, he founded a highly successful Academy and even Lord Byron became one of his pupils. He earned enormous sums of money and was paid as much as $100 for a single appearance. Despite this, he was so extravagant that he was always in debt. After he was defeated by a boxer called Gentleman Jackson, he was quickly forgotten. He was sent to prison for failing to pay his debts and died in poverty in 1836.',7),(262,22,'By heart','Some plays are so successful that they run for years on end, In many ways, this is unfortunate for the poor actors who are required to go on repeating the same lines night after night. One would expect them to know their parts by heart and never have cause to falter. Yet this is not always the case.\r\nA famous actor in a highly successful play was once cast in the role of an aristocrat who had been imprisoned in the Bastille for twenty years. In the last act, a gaoler would always come on to the stage with a letter which he would hand to the prisoner. Even though the noble was expected to read the letter at each performance, he always insisted that it should be written out in full.\r\nOne night, the gaoler decided to play a joke on his colleague to find out if, after so many performances, he had managed to learn the contents of the letter by heart. The curtain went up on the final act of the play and revealed the aristocrat sitting alone behind bars in his dark cell. Just then, the gaoler appeared with the precious letter in his hands. He entered the cell and presented the letter to the aristocrat. But the copy he gave him had not been written out in full as usual. It was simply a blank sheet of paper. The gaoler looked on eagerly, anxious to see if his fellow actor had at last learnt his lines. The noble stared at the blank sheet of paper for a few seconds. Then, squinting his eyes, he said: \'The light is dim. Read the letter to me\'. And he promptly handed the sheet of paper to the gaoler. Finding that he could not remember a word of the letter either, the gaoler replied: \'The light is indeed dim, sire, I must get my glasses.\' With this, he hurried off the stage. Much to the aristocrat\'s amusement, the gaoler returned a few moments later with a pair of glasses and the usual copy of the letter which he proceeded to read to the prisoner.',7),(263,23,'One man\'s meat is another man\'s poison','People become quite illogical when they try to decide what can be eaten and what cannot be eaten. If you lived in the Mediterranean, for instance, you would consider octopus a great delicacy. You would not be able to understand why some people find it repulsive. On the other hand, your stomach would turn at the idea of frying potatoes in animal fat - the normally accepted practice in many northern countries. The sad truth is that most of us have been brought up to eat certain foods and we stick to them all our lives.\r\nNo creature has received more praise and abuse than the common garden snail. Cooked in wine, snails are a great luxury in various parts of the world. There are countless people who, ever since their early years, have learned to associate snails with food. My friend, Robert, lives in a country where snails are despised. As his flat is in a large town, he has no garden of his own. For years he has been asking me to collect snails from my garden and take them to him. The idea never appealed to me very much, but one day, after a heavy shower, I happened to be walking in my garden when I noticed a huge number of snails taking a stroll on some of my prize plants. Acting on a sudden impulse, I collected several dozen, put them in a paper bag, and took them to Robert. Robert was delighted to see me and equally pleased with my little gift. I left the bag in the hall and Robert and I went into the living room where we talked for a couple of hours. I had forgotten all about the snails when Robert suddenly said that I must stay to dinner. Snails would, of course, be the main dish. I did not fancy the idea and I reluctantly followed Robert out of the room. To our dismay, we saw that there were snails everywhere: they had escaped from the paper bag and had taken complete possession of the hall! I have never been able to look at a snail since then.',7),(264,24,'A skeleton in the cupboard','We often read in novels how a seemingly respectable person or family has some terrible secret which has been concealed from strangers for years. The English language possesses a vivid saying to describe this sort of situation. The terrible secret is called \'a skeleton in the cupboard\'. At some dramatic moment in the story, the terrible secret becomes known and a reputation is ruined. The reader\'s hair stands on end when he reads in the final pages of the novel that the heroine, a dear old lady who had always been so kind to everybody, had, in her youth, poisoned every one of her five husbands.\r\nIt is all very well for such things to occur in fiction. To varying degrees, we all have secrets which we do not want even our closest friends to learn, but few of us have skeletons in the cupboard. The only person I know who has a skeleton in the cupboard is George Carlton, and he is very pound of the fact. George studied medicine in his youth. Instead of becoming a doctor, however, he became a successful writer of detective stories. I once spend an uncomfortable weekend which I shall never forget at his house. George showed me to the guestroom which, he said, was rarely used. He told me to unpack my things and then come down to dinner. After I had stacked my shirts and underclothes in two empty drawers, I decided to hang one of the tow suits I had brought with me in the cupboard. I opened the cupboard door and then stood in front of it petrified. A skeleton was dangling before my eyes. The sudden movement of the door made it sway slightly and it gave me the impression that it was about to leap out at me. Dropping my suit, I dashed downstairs to tell George. This was worse than \'a terrible secret\'; this was a read skeleton! But George was unsympathetic. \'Oh, that,\' he said with a smile as if he were talking about an old friend. \'That\'s Sebastian. You forget that I was a medical student once upon a time.\'',7),(265,25,'The Cutty Sark','One of the most famous sailing ships of the nineteenth century, the Cutty Sark, can still be seen at Greewich. She stands on dry land and is visited by thousands of people each year. She serves as an impressive reminder of the great ships of past. Before they were replaced by steamships, sailing vessels like the Cutty Sark were used to carry tea from China and wool from Australia. The Cutty Sark was one of the fastest sailing ships that has ever been built. The only other ship to match her was the Thermopylae. Both these ships set out from Shanghai on June 18th, 1872 on an exciting race to England. This race, which went on for exactly four months, was the last of its kind. It marked the end of the great tradition of ships with sails and the beginning of a new era.\r\nThe first of the two ships to reach Java after the race had begun was the Thermopylae, but on the Indian Ocean, the Cutty Sark took the lead. It seemed certain that she would be the first ship home, but during the race she had a lot of bad luck. In August, she was struck by a very heavy storm during which her rudder was torn away. The Cutty Sark rolled from side to side and it became impossible to steer her. A temporary rudder was made on board from spare planks and it was fitted with great difficulty. This greatly reduced the speed of the ship, for there was a danger that if she traveled too quickly, this rudder would be torn away as well. Because of this, the Cutty Sark lost her lead. After crossing the Equator, the captain called in at a port to have a new rudder fitted, but by now the Thermopylae was over five hundred miles ahead. Though the new rudder was fitted at tremendous speed, it was impossible for the Cutty Sark to win. She arrived in England a week after the Thermopylae. Even this was remarkable, considering that she had had so many delays. There is no doubt that if she had not lost her rudder she would have won the race easily.',7),(266,26,'Wanted: a large biscuit tin','No one can avoid being influenced by advertisements. Much as we may pride ourselves on our good taste, we are no longer free to choose the things we want, for advertising exerts a subtle influence on us. In their efforts to persuade us to buy this or that product, advertisers have made a close study of human nature and have classified all our little weaknesses.\r\nAdvertisers discovered years ago that all of us love to get something for nothing. An advertisement which begins with the magic word FREE can rarely go wrong. These days, advertisers not only offer free samples, but free cars, free houses, and free trips round the world as well. They devise hundreds of competitions which will enable us to win huge sums of money. Radio and television have made it possible for advertisers to capture the attention of millions of people in this way.\r\nDuring a radio programme, a company of biscuit manufacturers once asked listeners to bake biscuits and send them to their factory. They offered to pay $10 a pound for the biggest biscuit baked by a listener. The response to this competition was tremendous. Before long, biscuits of all shapes and sizes began arriving at the factory. One lady brought in a biscuit on a wheelbarrow. It weighed nearly 500 pounds. A little later, a man came along with a biscuit which occupied the whole boot of his car. All the biscuits that were sent were carefully weighed. The largest was 713 pounds. It seemed certain that this would win the prize. But just before the competition closed, a lorry arrived at the factory with a truly colossal biscuit which weighed 2,400 pounds. It had been baked by a college student who had used over 1,000 pounds of flour, 800 pounds of sugar, 200 pounds of fat, and 400 pounds of various other ingredients. It was so heavy that a crane had to be used to remove it from the lorry. The manufacturers had to pay more money than they had anticipated, for they bought the biscuit from the student for $24,000.',7),(267,27,'Nothing to sell and nothing to buy','It has been said that everyone lives by selling something. In the light of this statement, teachers live by selling knowledge, philosophers by selling wisdom and priests by selling spiritual comfort. Though it may be possible to measure the value of material goods in terms of money, it is extremely difficult to estimate the true value of the services which people perform for us. There are times when we would willingly give everything we possess to save our lives, yet we might grudge paying a surgeon a high fee for offering us precisely this service. The conditions of society are such that skills have to be paid for in the same way that goods are paid for at a shop. Everyone has something to sell.\r\nTramps seem to be the only exception to this general rule. Beggars almost sell themselves as human being to arouse the pity of passers-by. But real tramps are not beggars. They have nothing to sell and require nothing from others. In seeking independence, they do not sacrifice their human dignity. A tramp may ask you for money, but he will never ask you to feel sorry for him. He has deliberately chosen to lead the life he leads and is fully aware of the consequences. He may never be sure where the next meal is coming from, but he is free from the thousands of anxieties which afflict other people. His few material possessions make it possible for him to move from place to place with ease. By having to sleep in the open, he gets far closer to the world of nature than most of us ever do. He may hunt, beg, or steal occasionally to keep himself alive; he may even, in times of real need, do a little work; but he will never sacrifice his freedom. We often speak of tramps with contempt and put them in the same class as beggars, but how many of us can honestly say that we have not felt a little envious of their simple way of life and their freedom from care?',7),(268,28,'Five pounds too dear','Small boats loaded with wares sped to the great liner as she was entering the harbour. Before she had anchored, the men from the boats had climbed on board and the decks were soon covered with colourful rugs from Persia, silks from India, copper coffee pots, and beautiful handmade silverware. It was difficult not to be tempted. Many of the tourists on board had begun bargaining with the tradesmen, but I decided not to buy anything until I had disembarked.\r\nI had no sooner got off the ship than I was assailed by a man who wanted to sell me a diamond ring. I had no intention of buying one, but I could not conceal the fact that I was impressed by the size of the diamonds. Some of them were as big as marbles. The man went to great lengths to prove that the diamonds were real. As we were walking past a shop, he held a diamond firmly against the window and made a deep impression in the glass. It took me over half an hour to get rid of him.\r\nThe next man to approach me was selling expensive pens and watches. I examined one of the pens closely. It certainly looked genuine. At the base of the gold cap, the words \'made in the U.S.A\' had been neatly inscribed. The man said that the pen was worth $50, but as a special favour, he would let me have it for $30. I shook my head and held up five fingers indicating that I was willing to pay $5. Gesticulating wildly, the man acted as if he found my offer outrageous, but he eventually reduced the price to $10. Shrugging my shoulders, I began to walk away when, a moment later, he ran after me and thrust the pen into my hands. Though he kept throwing up his arms in despair, he readily accepted the $5 I gave him. I felt especially pleased with my wonderful bargain - until I got back to the ship. No matter how hard I tried, it was impossible to fill this beautiful pen with ink and to this day it has never written a single world!',7),(269,29,'Funny or not?','Whether we find a joke funny or not largely depends on were we have been brought up. The sense of humour is mysteriously bound up with national characteristics. A Frenchman, for instance, might find it hard to laugh at a Russian joke. In the same way, a Russian might fail to see anything amusing in a joke which would make an Englishman laugh to tears.\r\nMost funny stories are based on comic situations. In spite of national differences, certain funny situations have a universal appeal. No matter where you live, you would find it difficult not to laugh at, say, Charlie Chaplin\'s early films. However, a new type of humour, which stems largely from the U.S., has recently come into fashion. It is called \'sick humour\'. Comedians base their jokes on tragic situation like violent death or serious accidents. Many people find this sort of joke distasteful. The following example of \'sick humour\' will enable you to judge for yourself.\r\nA man who had broken his right leg was taken to hospital a few weeks before Christmas. From the moment he arrived there, he kept on pestering his doctor to tell him when he would be able to go home. He dreaded having to spend Christmas in hospital. Though the doctors did his best, the patient\'s recovery was slow. On Christmas Day, the man still had his right leg in plaster. He spent a miserable day in bed thinking of all the fun he was missing. The following day, however, the doctor consoled him by telling him that his chances of being able to leave hospital in time for New Year celebrations were good. The man took heart and, sure enough, on New Year\'s Eve he was able to hobble along to a party. To compensate for his unpleasant experiences in hospital, the man drank a little more than was good for him. In the process, he enjoyed himself thoroughly and kept telling everybody how much he hated hospitals. He was still mumbling something about hospitals at the end of the party when he slipped on a piece of ice and broke his left leg.',7),(270,30,'The death of a ghost','For years, villagers believed that Endley Farm was haunted. The farm was owned by two brothers, Joe and Bob Cox. They employed a few farmhands, but no one was willing to work there long. Every time a worker gave up his job, he told the same story. Farm labourers said that they always woke up to find that work had been done overnight. Hay had been cut and cowsheds had been cleaned. A farm worker, who stayed up all night, claimed to have seen a figure cutting corn in the moonlight. In time, it became an accepted fact the Cox brothers employed a conscientious ghost that did most of their work for them.\r\nNo one suspected that there might be someone else on the farm who had never been seen. This was indeed the case. A short time ago, villagers were astonished to learn that the ghost of Endley had died. Everyone went to the funeral, for the \'ghost\' was none other than Eric Cox, a third brother who was supposed to have died as a young man. After the funeral, Joe and Bob revealed a secret which they had kept for over fifty years.\r\nEric had been the eldest son of the family, very much older than his two brothers. He had been obliged to join the army during the Second World War. As he hated army life, he decided to desert his regiment. When he learnt that he would be sent abroad, he returned to the farm and his father hid him until the end of the war. Fearing the authorities, Eric remained in hiding after the war as well. His father told everybody that Eric had been killed in action. The only other people who knew the secret were Joe and Bob. They did not even tell their wives. When their father died, they thought it their duty to keep Eric in hiding. All these years, Eric had lived as a recluse. He used to sleep during the day and work at night, quite unaware of the fact that he had become the ghost of Endley. When he died, however, his brothers found it impossible to keep the secret any longer.',7),(271,31,'A lovable eccentric','True eccentrics never deliberately set out to draw attention to themselves. They disregard social conventions without being conscious that they are doing anything extraordinary. This invariably wins them the love and respect of others, for they add colour to the dull routine of everyday life.\r\nUp to the time of his death, Richard Colson was one of the most notable figures in our town. He was a shrewd and wealthy businessman, but most people in the town hardly knew anything about this side of his life. He was known to us all as Dickie and his eccentricity had become legendary long before he died.\r\nDickie disliked snobs intensely. Though he owned a large car, he hardly ever used it, preferring always to go on foot. Even when it was raining heavily, he refused to carry an umbrella. One day, he walked into an expensive shop after having been caught in a particularly heavy shower. He wanted to buy a $300 watch for his wife, but he was in such a bedraggled condition that an assistant refused to serve him. Dickie left the shop without a word and returned carrying a large cloth bag. As it was extremely heavy, he dumped it on the counter. The assistant asked him to leave, but Dickie paid no attention to him and requested to see the manager. Recognizing who the customer was, the manager was most apologetic and reprimanded the assistant severely. When Dickie was given the watch, he presented the assistant with the cloth bag. It contained $300 in pennies. He insisted on the assistant\'s counting the money before he left - 30,000 pennies in all! On another occasion, he invited a number of important critics to see his private collection of modern paintings. This exhibition received a great deal of attention in the press, for though the pictures were supposed to be the work of famous artists, they had in fact been painted by Dickie. It took him four years to stage this elaborate joke simply to prove that critics do not always know what they are talking about.',7),(272,32,'A lost ship','The salvage operation had been a complete failure. The small ship, Elkor, which had been searching the Barents Sea for weeks, was on its way home. A radio message from the mainland had been received by the ship\'s captain instructing him to give up the search. The captain knew that another attempt would be made later, for the sunken ship he was trying to find had been carrying a precious cargo of gold bullion.\r\nDespite the message, the captain of the Elkor decided to try once more. The sea bed was scoured with powerful nets and there was tremendous excitement on board when a chest was raised from the bottom. Though the crew were at first under the impression that the lost ship had been found, the contents of the chest proved them wrong. What they had in fact found was a ship which had been sunk many years before.\r\nThe chest contained the personal belongings of a seaman, Alan Fielding. There were books, clothing and photographs, together with letters which the seaman had once received from his wife. The captain of the Elkor ordered his men to salvage as much as possible from the wreck. Nothing of value was found, but the numerous items which were brought to the surface proved to be of great interest. From a heavy gun that was raised, the captain realized that the ship must have been a cruiser. In another chest, which contained the belongings of a ship\'s officer, there was an unfinished letter which had been written on March 14th, 1943. The captain learnt from the letter that the name of the lost ship was the Karen. The most valuable find of all was the ship\'s log book, parts of which it was still possible to read. From this the captain was able to piece together all the information that had come to light. The Karen had been sailing in a convoy to Russia when she was torpedoed by an enemy submarine. This was later confirmed by a naval official at the Ministry of Defence after the Elkor had returned home. All the items that were found were sent to the War Museum.',7),(273,33,'A day to remember','We have all experienced days when everything goes wrong. A day may begin well enough, but suddenly everything seems to get out of control. What invariably happens is that a great number of things choose to go wrong at precisely the same moment. It is as if a single unimportant event set up a chain of reactions. Let us suppose that you are preparing a meal and keeping an eye on the baby at the same time. The telephone rings and this marks the prelude to an unforeseen series of catastrophes. While you are on the phone, the baby pulls the tablecloth off the table, smashing half your best crockery and cutting himself in the process. You hang up hurriedly and attend to baby, crockery, etc. Meanwhile, the meal gets burnt. As if this were not enough to reduce you to tears, your husband arrives, unexpectedly bringing three guests to dinner.\r\nThings can go wrong on a big scale, as a number of people recently discovered in Parramatta, a suburb of Sydney. During the rush hour one evening two cars collided and both drivers began to argue. The woman immediately behind the two cars happened to be a learner. She suddenly got into a panic and stopped her car. This made the driver following her brake hard. His wife was sitting beside him holding a large cake. As she was thrown forward, the cake went right through the windscreen and landed on the road. Seeing a cake flying through the air, a lorry driver who was drawing up alongside the car, pulled up all of a sudden. The lorry was loaded with empty beer bottles and hundreds of them slid off the back of the vehicle and on to the road. This led to yet another angry argument. Meanwhile, the traffic piled up behind. It took the police nearly an hour to get the traffic on the move again. In the meantime, the lorry driver had to sweep up hundreds of broken bottles. Only two stray dogs benefited from all this confusion, for they greedily devoured what was left of the cake. It was just one of those days!',7),(274,34,'A happy discovery','Antique shops exert a peculiar fascination on a great many people. The more expensive kind of antique shop where rare objects are beautifully displayed in glass cases to keep them free from dust is usually a forbidding place. But no one has to muster up courage to enter a less pretentious antique shop. There is always hope that in its labyrinth of musty, dark, disordered rooms a real rarity will be found amongst the piles of assorted junk that litter the floors.\r\nNo one discovers a rarity by chance. A truly dedicated bargain hunter must have patience, and above all, the ability to recognize the worth of something when he sees it. To do this, he must be at least as knowledgeable as the dealer. Like a scientist bent on making a discovery, he must cherish the hope that one day he will be amply rewarded.\r\nMy old friend, Frank Halliday, is just such a person. He has often described to me how he picked up a masterpiece for a mere $50. One Saturday morning, Frank visited an antique shop in my neighbourhood. As he had never been there before, he found a great deal to interest him. The morning passed rapidly and Frank was about to leave when he noticed a large packing case lying on the floor. The dealer told him it had just come in, but that he could not be bothered to open it. Frank begged him to do so and the dealer reluctantly prised it open. The contents were disappointing. Apart from an interesting-looking carved dagger, the box was full of crockery, much of it broken. Frank gently lifted the crockery out of the box an suddenly noticed a miniature painting at the bottom of the packing case. As its composition and line reminded him of an Italian painting he knew well, he decided to buy it. Glancing at it briefly, the dealer told him that it was worth $50. Frank could hardly conceal his excitement, for he knew that he had made a real discovery. The tiny painting proved to be an unknown masterpiece by Correggio and was worth hundreds of thousands of pounds.',7),(275,35,'Justice was done','The word justice is usually associated with courts of law. We might say that justice has been done when a man\'s innocence or guilt has been proved beyond doubt. Justice is part of the complex machinery of the law. Those who seek it undertake an arduous journey and can never be sure that they will find it. Judges, however wise or eminent, are human and can make mistakes.\r\nThere are rare instances when justice almost ceases to be an abstract concept. Reward or punishment are meted out quite independent of human interference. At such times, justice acts like a living force. When we use a phrase like \'it serves him right\', we are, in part, admitting that a certain set of circumstances has enabled justice to act of its own accord.\r\nWhen a thief was caught on the premises of large jewellery store on morning, the shop assistants must have found it impossible to resist the temptation to say \'it serves him right\'. The shop was an old converted house with many large, disused fireplaces and tall, narrow chimneys. Towards midday, a girl heard a muffled cry coming from behind one of the walls. As the cry was repeated several times, she ran to tell the manager who promptly rang up the fire brigade. The cry had certainly come from one of the chimneys, but as there were so many of them, the fire fighters could not be certain which one it was. They located the right chimney by tapping at the walls and listening for the man\'s cries. After chipping through a wall which was eighteen inches thick, they found that a man had been trapped in the chimney. As it was extremely narrow, the man was unable to move, but the fire fighters were eventually able to free him by cutting a huge hole in the wall. The sorry-looking, blackened figure that emerged, admitted at once that he had tried to break into the shop during the night but had got stuck in the chimney. He had been there for nearly ten hours. Justice had been done even before the man was handed over to the police.',7),(276,36,'A chance in a million','We are less credulous than we used to be. In the nineteenth century, a novelist would bring his story to a conclusion by presenting his readers with a series of coincidences - most of them wildly improbable. Readers happily accepted the fact that an obscure maidservant was really the hero\'s mother. A long-lost brother, who was presumed dead, was really alive all the time and wickedly plotting to bring about the hero\'s downfall. And so on. Modern readers would find such naive solutions totally unacceptable. Yet, in real life, circumstances do sometimes conspire to bring about coincidences which anyone but a nineteenth century novelist would find incredible.\r\nWhen I was a boy, my grandfather told me how a German taxi driver, Franz Bussman, found a brother who was thought to have been killed twenty years before. While on a walking tour with his wife, he stopped to talk to a workman. After they had gone on, Mrs. Bussman commented on the workman\'s close resemblance to her husband and even suggested that he might be his brother. Franz poured scorn on the idea, pointing out that his brother had been killed in action during the war. Though Mrs. Busssman was fully acquainted with this story, she thought that there was a chance in a million that she might be right. A few days later, she sent a boy to the workman to ask him if his name was Hans Bussman. Needless to say, the man\'s name was Hans Bussman and he really was Franz\'s long-lost brother. When the brothers were reunited, Hans explained how it was that he was still alive. After having been wounded towards the end of the war, he had been sent to hospital and was separated from his unit. The hospital had been bombed and Hans had made his way back into Western Germany on foot. Meanwhile, his unit was lost and all records of him had been destroyed. Hans returned to his family home, but the house had been bombed and no one in the neighbourhood knew what had become of the inhabitants. Assuming that his family had been killed during an air raid, Hans settled down in a village fifty miles away where he had remained ever since.',7),(277,37,'The Westhaven Express','We have learnt to expect that trains will be punctual. After years of conditioning, most of us have developed an unshakable faith in railway timetables. Ships may be delayed by storms; flights may be cancelled because of bad weather, but trains must be on time. Only an exceptionally heavy snowfall might temporarily dislocate railway services. It is all too easy to blame the railway authorities when something does go wrong. The truth is that when mistakes occur, they are more likely to be ours than theirs.\r\nAfter consulting my railway timetable, I noted with satisfaction that there was an express train to Westhaven. It went direct from my local station and the journey lasted a mere hour and seventeen minutes. When I boarded the train, I could not help noticing that a great many local people got on as well. At the time, this did not strike me as odd. I reflected that there must be a great many people besides myself who wished to take advantage of this excellent service. Neither was I surprised when the train stopped at Widley, a tiny station a few miles along the line. Even a mighty express train can be held up by signals. But when the train dawdled at station after station, I began to wonder, It suddenly dawned on me that this express was not roaring down the line at ninety miles an hour, but barely chugging along at thirty. One hour and seventeen minutes passed and we had not even covered half the distance. I asked a passenger if this was the Westhaven Express, but he had not even heard of it. I determined to lodge a complaint as soon as we arrived. Two hours later, I was talking angrily to the station master at Westhaven. When he denied the train\'s existence, I borrowed his copy of the timetable. There was a note of triumph in my voice when I told him that it was there in black and white. Glancing at it briefly, he told me to look again. A tiny asterisk conducted me to a footnote at the bottom of the page. It said: \'This service has been suspended.\'',7),(278,38,'The first calender','Future historians will be in a unique position when they come to record the history of our own times. They will hardly know which facts to select from the great mass of evidence that steadily accumulates. What is more, they will not have to rely solely on the written word. Films, videos, CDs and CD-ROMS are just some of the bewildering amount of information they will have. They will be able, as it were, to see and hear us in action. But the historian attempting to reconstruct the distant past is always faced with a difficult task. He has to deduce what he can from the few scanty clues available. Even seemingly insignificant remains can shed interesting light on the history of early man.\r\nUp to now, historians have assumed that calendars came into being with the advent of agriculture, for then man was faced with a real need to understand something about the seasons. Recent scientific evidence seems to indicate that this assumption is incorrect.\r\nHistorians have long been puzzled by dots, lines and symbols which have been engraved on walls, bones, and the ivory tusks of mammoths. The nomads who made these markings lived by hunting and fishing during the last Ice Age which began about 35,000 B.C. and ended about 10,000 B.C. By correlating markings made in various parts of the world, historians have been able to read this difficult code. They have found that it is connected with the passage of days and the phases of the moon. It is, in fact, a primitive type of calendar. It has long been known that the hunting scenes depicted on walls were not simply a form of artistic expression. They had a definite meaning, for they were as near as early man could get to writing. It is possible that there is a definite relation between these paintings and the markings that sometimes accompany them. It seems that man was making a real effort to understand the seasons 20,000 years earlier than has been supposed.',7),(279,39,'Nothing to worry about','The rough across the plain soon became so bad that we tried to get Bruce to drive back to the village we had come from. Even though the road was littered with boulders and pitted with holes, Bruce was not in the least perturbed. Glancing at his map, he informed us that the next village was a mere twenty miles away. It was not that Bruce always underestimated difficulties. He simply had no sense of danger at all. No matter what the conditions were, he believed that a car should be driven as fast as it could possibly go.\r\nAs we bumped over the dusty track, we swerved to avoid large boulders. The wheels scooped up stones which hammered ominously under the car. We felt sure that sooner or later a stone would rip a hole in our petrol tank or damage the engine. Because of this, we kept looking back, wondering if we were leaving a trail of oil and petrol behind us.\r\nWhat a relief it was when the boulders suddenly disappeared, giving way to a stretch of plain where the only obstacles were clumps of bushes. But there was worse to come. Just ahead of us there was a huge fissure. In response to renewed pleadings, Bruce stopped. Though we all got out to examine the fissure, he remained in the car. We informed him that the fissure extended for fifty yards and was two feet wide and four feet deep. Even this had no effect. Bruce went into a low gear and drove at a terrifying speed, keeping the front wheels astride the crack as he followed its zigzag course. Before we had time to worry about what might happen, we were back on the plain again. Bruce consulted the map once more and told us that the village was now only fifteen miles away. Our next obstacle was a shallow pool of water about half a mile across. Bruce charged at it, but in the middle, the car came to a grinding halt. A yellow light on the dashboard flashed angrily and Bruce cheerfully announced that there was no oil in the engine!',7),(280,40,'Who\'s who','It has never been explained why university students seem to enjoy practical jokes more than anyone else. Students specialize in a particular type of practical joke: the hoax. Inviting the fire brigade to put out a nonexistent fire is a crude form of deception which no self-respecting student would ever indulge in. Students often create amusing situations which are funny to everyone except the victims.\r\nWhen a student recently saw two workmen using a pneumatic drill outside his university, he immediately telephoned the police and informed them that two students dressed up as workmen were tearing up the road with a pneumatic drill. As soon as he had hung up, he went over to the workmen and told them that if a policeman ordered them to go away, they were not to take him seriously. He added that a student had dressed up as a policeman and was playing all sorts of silly jokes on people. Both the police and the workmen were grateful to the student for this piece of advance information.\r\nThe student hid in an archway nearby where he could watch and hear everything that went on. Sure enough, a policeman arrived on the scene and politely asked the workmen to go away. When he received a very rude reply from one of the workmen, He threatened to remove them by force. The workmen told him to do as he pleased and the policeman telephoned for help. Shortly afterwards, four more policemen arrived and remonstrated with the workmen. As the men refused to stop working, the police attempted to seize the pneumatic drill. The workmen struggled fiercely and one of them lost his temper. He threatened to call the police. At this, the police pointed out ironically that this would hardly be necessary as the men were already under arrest. Pretending to speak seriously, one of the workmen asked if he might make a telephone call before being taken to the station. Permission was granted and a policeman accompanied him to a pay phone. Only when he saw that the man was actually telephoning the police did he realize that they had all been the victims of a hoax.',7),(281,41,'Illusions of Pastoral peace','The quiet life of the country has never appealed to me. City born and city bred. I have always regarded the country as something you look at through a train window, or something you occasionally visit during the weekend. Most of my friends live in the city, yet they always go into raptures at the mere mention of the country. Though they extol the virtues of the peaceful life, only one of them has ever gone to live in the country and he was back in town within six months. Even he still lives under the illusion that country life is somehow superior to town life. He is forever talking about the friendly people, the clean atmosphere, the closeness to nature and the gentle pace of living. Nothing can be compared, he maintains, with the first cockcrow, the twittering of birds at dawn, the sight of the rising sun glinting on the trees and pastures. This idyllic pastoral scene is only part of the picture. My friend fails to mention the long and friendless winter evenings in front of the TV - virtually the only form of entertainment. He says nothing about the poor selection of goods in the shops, or about those unfortunate people who have to travel from the country to the city every day to get to work. Why people are prepared to tolerate a four-hour journey each day for the dubious privilege of living in the country is beyond me. They could be saved so much misery and expense if they chose to live in the city where they rightly belong.\r\nIf you can do without the few pastoral pleasures of the country, you will find the city can provide you with the best that life can offer. You never have to travel miles to see your friends. They invariably live nearby and are always available for an informal chat or an evening\'s entertainment. Some of my acquaintances in the country come up to town once or twice a year to visit the theatre as a special treat. For them this is a major operation which involves considerable planning. As the play draws to its close, they wonder whether they will ever catch that last train home. The city dweller never experiences anxieties of this sort. The latest exhibitions, films, or plays are only a short bus ride away. Shopping, too, is always a pleasure. There is so much variety that you never have to make do with second best. Country people run wild when they go shopping in the city and stagger home loaded with as many of the exotic items as they can carry. Nor is the city without its moments of beauty. There is something comforting about the warm glow shed by advertisements on cold wet winter nights. Few things could be more impressive than the peace that descends on deserted city streets at weekends when the thousands that travel to work every day are tucked away in their homes in the country. It has always been a mystery to me why city dwellers, who appreciate all these things, obstinately pretend that they would prefer to live in the country.',8),(282,42,'Modern cavemen','Cave exploration, or pot-holing, as it has come to be known, is a relatively new sport. Perhaps it is the desire for solitude or the chance of making an unexpected discovery that lures people down to the depths of the earth. It is impossible to give a satisfactory explanation for a pot-holer\'s motives. For him, caves have the same peculiar fascination which high mountains have for the climber. They arouse instincts which can only be dimly understood.\r\nExploring really deep caves is not a task for the Sunday afternoon rambler. Such undertakings require the precise planning and foresight of military operations. It can take as long as eight days to rig up rope ladders and to establish supply bases before a descent can be made into a very deep cave. Precautions of this sort are necessary, for it is impossible to foretell the exact nature of the difficulties which will confront the pot-holer. The deepest known cave in the world is the Gouffre Berger near Grenoble. It extends to a depth of 3,723 feet. This immense chasm has been formed by an underground stream which has tunnelled a course through a flaw in the rocks. The entrance to the cave is on a plateau in the Dauphine Alps. As it is only six feet across, it is barely noticeable. The cave might never have been discovered had not the entrance been spotted by the distinguished French pot-holer, Berger. Since its discovery, it has become a sort of potholers\' Everest. Though a number of descents have been made, much of it still remains to be explored.\r\nA team of pot-holers recently went down the Gouffre Berger. After entering the narrow gap on the plateau, they climbed down the steep sides of the cave until they came to narrow corridor. They had to edge their way along this, sometimes wading across shallow streams, or swimming across deep pools. Suddenly they came to a waterfall which dropped into an underground lake at the bottom of the cave. They plunged into the lake, and after loading their gear on an inflatable rubber dinghy, let the current carry them to the other side. To protect themselves from the icy water, they had to wear special rubber suits. At the far end of the lake, they came to huge piles of rubble which had been washed up by the water. In this part of the cave, they could hear an insistent booming sound which they found was caused by a small waterspout shooting down into a pool from the roof of the cave. Squeezing through a cleft in the rocks, the pot-holers arrived at an enormous cavern, the size of a huge concert hall. After switching on powerful arc lights, they saw great stalagmites - some of them over forty feet high - rising up like tree-trunks to meet the stalactites suspended from the roof. Round about, piles of limestone glistened in all the colours of the rainbow. In the eerie silence of the cavern, the only sound that could be heard was made by water which dripped continuously from the high dome above them.',8),(283,43,'Fully insured','Insurance companies are normally willing to insure anything. Insuring public or private property is a standard practice in most countries in the world. If, however, you were holding an open air garden party or a fete it would be equally possible to insure yourself in the event of bad weather. Needless to say, the bigger the risk an insurance company takes, the higher the premium you will have to pay. It is not uncommon to hear that a shipping company has made a claim for cost of salvaging a sunken ship. But the claim made by a local authority to recover the cost of salvaging a sunken pie dish must surely be unique.\r\nAdmittedly it was an unusual pie dish, for it was eighteen feet long and six feet wide. It had been purchased by a local authority so that an enormous pie could be baked for an annual fair. The pie committee decided that the best way to transport the dish would be by canal, so they insured it for the trip. Shortly after it was launched, the pie committee went to a local inn to celebrate. At the same time, a number of teenagers climbed on to the dish and held a little party of their own. Dancing proved to be more than the dish could bear, for during the party it capsized and sank in seven feet of water.\r\nThe pie committee telephoned a local garage owner who arrived in a recovery truck to salvage the pie dish. Shivering in their wet clothes, the teenagers looked on while three men dived repeatedly into the water to locate the dish. They had little difficulty in finding it, but hauling it out of the water proved to be a serious problem. The sides of the dish were so smooth that it was almost impossible to attach hawsers and chains to the rim without damaging it. Eventually chains were fixed to one end of the dish and a powerful winch was put into operation. The dish rose to the surface and was gently drawn towards the canal bank. For one agonizing moment, the dish was perched precariously on the bank of the canal, but it suddenly overbalanced and slid back into the water. The men were now obliged to try once more. This time they fixed heavy metal clamps to both sides of the dish so that they could fasten the chains. The dish now had to be lifted vertically because one edge was resting against the side of the canal. The winch was again put into operation and one of the men started up the truck. Several minutes later, the dish was successfully hauled above the surface of the water. Water streamed in torrents over its sides with such force that it set up a huge wave in the canal. There was a danger that the wave would rebound off the other side of the bank and send the dish plunging into the water again. By working at tremendous speed, the men managed to get the dish on to dry land before the wave returned.',8),(284,44,'Speed and comfort','People travelling long distances frequently have to decide whether they would prefer to go by land, sea, or air. Hardly anyone can positively enjoy sitting in a train for more than a few hours. Train compartments soon get cramped and stuffy. It is almost impossible to take your mind off the journey. Reading is only a partial solution, for the monotonous rhythm of the wheels clicking on the rails soon lulls you to sleep. During the day, sleep comes in snatches. At night, when you really wish to go to sleep, you rarely manage to do so. If you are lucky enough to get a sleeper, you spend half the night staring at the small blue light in the ceiling, or fumbling to find your ticket for inspection. Inevitably you arrive at your destination almost exhausted. Long car journeys are even less pleasant, for it is quite impossible even to read. On motorways you can, at least, travel fairly safely at high speeds, but more often than not, the greater part of the journey is spent on roads with few service stations and too much traffic. By comparison, ferry trips or cruises offer a great variety of civilized comforts. You can stretch your legs on the spacious decks, play games, meet interesting people and enjoy good food - always assuming, of course, that the sea is calm. If it is not, and you are likely to get seasick, no form of transport could be worse. Even if you travel in ideal weather, sea journeys take a long time. Relatively few people are prepared to sacrifice holiday time for the pleasure of travlling by sea.\r\nAeroplanes have the reputation of being dangerous and even hardened travellers are intimidated by them. They also have the disadvantage of being an expensive form of transport. But nothing can match them for speed and comfort. Travelling at a height of 30,000 feet, far above the clouds, and at over 500 miles an hour is an exhilarating experience. You do not have to devise ways of taking your mind off the journey, for an aeroplane gets you to your destination rapidly. For a few hours, you settle back in a deep armchair to enjoy the flight. The real escapist can watch a film and sip champagne on some services. But even when such refinements are not available, there is plenty to keep you occupied. An aeroplane offers you an unusual and breathtaking view of the world. You soar effortlessly over high mountains and deep valleys. You really see the shape of the land. If the landscape is hidden from view, you can enjoy the extraordinary sight of unbroken cloud plains that stretch out for miles before you, while the sun shines brilliantly in a clear sky. The journey is so smooth that there is nothing to prevent you from reading or sleeping. However you decide to spend your time, one thing is certain: you will arrive at your destination fresh and uncrumpled. You will not have to spend the next few days recovering from a long and arduous journey.',8),(285,45,'The power of the press','In democratic countries any efforts to restrict the freedom of the press are rightly condemned. However, this freedom can easily be abused. Stories about people often attract far more public attention than political events. Though we may enjoy reading about the lives of others, it is extremely doubtful whether we would equally enjoy reading about ourselves. Acting on the contention that facts are sacred, reporters can cause untold suffering to individuals by publishing details about their private lives. Newspapers exert such tremendous influence that they can not only bring about major changes to the lives of ordinary people but can even overthrow a government.\r\nThe story of a poor family that acquired fame and fortune overnight, dramatically illustrates the power of the press. The family lived in Aberdeen, a small town of 23,000 inhabitants in South Dakota. As the parents had five children, life was a perpetual struggle against poverty. They were expecting their sixth child and were faced with even more pressing economic problems. If they had only had one more child, the fact would have passed unnoticed. They would have continued to struggle against economic odds and would have lived in obscurity. But they suddenly became the parents of quintuplets, four girls and a boy, an event which radically changed their lives. The day after the birth of the five children, an aeroplane arrived in Aberdeen bringing sixty reporters and photographers.\r\nThe rise to fame was swift. Television cameras and newspapers carried the news to everyone in the country. Newspapers and magazines offered the family huge sums for the exclusive rights to publish stories and photographs. Gifts poured in not only from unknown people, but from baby food and soap manufacturers who wished to advertise their products. The old farmhouse the family lived in was to be replaced by a new $500,000 home. Reporters kept pressing for interviews so lawyers had to be employed to act as spokesmen for the family at press conferences. While the five babies were still quietly sleeping in oxygen tents in hospital nursery, their parents were paying the price for fame. It would never again be possible for them to lead normal lives. They had become the victims of commercialization, for their names had acquired a market value. Instead of being five new family members, these children had immediately become a commodity.',8),(286,46,'Do it yourself','So great is our passion for doing things for ourselves, that we are becoming increasingly less dependent on specialized labour. No one can plead ignorance of a subject any longer, for there are countless do-it-yourself publications. Armed with the right tools and materials, newlyweds gaily embark on the task of decorating their own homes. Men, particularly, spend hours of their leisure time installing their own fireplaces, laying out their own gardens; building garages and making furniture. Some really keen enthusiasts go so far as to build their own computers. Shops cater for the do-it-yourself craze not only by running special advisory services for novices, but by offering consumers bits and pieces which they can assemble at home. Such things provide an excellent outlet for pent up creative energy, but unfortunately not all of us are born handymen.\r\nSome wives tend to believe that their husbands are infinitely resourceful and can fix anything. Even men who can hardly drive a nail in straight are supposed to be born electricians, carpenters, plumbers and mechanics. When lights fuse, furniture gets rickety, pipes get clogged, or vacuum cleaners fail to operate, some woman assume that their husbands will somehow put things right. The worst thing about the do-it-yourself game is that sometimes even men live under the delusion that they can do anything, even when they have repeatedly been proved wrong. It is a question of pride as much as anything else.\r\nLast spring my wife suggested that I call in a man to look at our lawn mower. It had broken down the previous summer, and though I promised to repair it, I had never got round to it. I would not hear of the suggestion and said that I would fix it myself. One Saturday afternoon, I hauled the machine into the garden and had a close look at it. As far as I could see, it needed only a minor adjustment: a turn of a screw here, a little tightening up there, a drop of oil and it would be as good as new. Inevitably the repair job was not quite so simple. The mower firmly refused to mow, so I decided to dismantle it. The garden was soon littered with chunks of metal which had once made up a lawn mower. But I was extremely pleased with myself. I had traced the cause of the trouble. One of the links in the chain that drives the wheels had snapped. After buying a new chain I was faced with the insurmountable task of putting the confusing jigsaw puzzle together again. I was not surprised to find that the machine still refused to work after I had reassembled it, for the simple reason that I was left with several curiously shaped bits of metal which did not seem to fit anywhere. I gave up in despair. The weeks passed and the grass grew. When my wife nagged me to do something about it, I told her that either I would have to buy a new mower or let the grass grow. Needless to say our house is now surrounded by a jungle. Buried somewhere in deep grass there is a rusting lawn mower which I have promised to repair one day.',8),(287,47,'Too high a price?','Pollution is the price we pay for an overpopulated, over industrialized planet. When you come to think about it, there are only four ways you can deal with rubbish: dump it, burn it, turn it into something you can use again, attempt to produce less of it. We keep trying all four methods, but the sheer volume of rubbish we produce worldwide threatens to overwhelm us.\r\nRubbish, however, is only part of the problem of polluting our planet. The need to produce ever-increasing quantities of cheap food leads to a different kind of pollution. Industrialized farming methods produce cheap meat products: beef, pork and chicken. The use of pesticides and fertilizers produces cheap grain and vegetables. The price we pay for cheap food may be already too high: Mad Cow Disease (BSE) in cattle, salmonella in chicken and eggs, and listeria in dairy products. And if you think you\'ll abandon meat and become a vegetarian, you have the choice of very expensive organically-grown vegetables or a steady diet of pesticides every time you think you\'re eating fresh salads and vegetables, or just having an innocent glass of water!\r\nHowever, there is an even more insidious kind of pollution that particularly affects urban areas and invades our daily lives, and that is noise. Burglar alarms going off at any time of the day or night serve only to annoy passers-by and actually assist burglars to burgle. Car alarms constantly scream at us in the street and are a source of profound irritation. A recent survey of the effects of noise revealed (surprisingly?) that dogs barking incessantly in the night rated the highest form of noise pollution on a scale ranging from 1 to 7. The survey revealed a large number of sources of noise that we really dislike. Lawn mowers whining on a summer\'s day, late-night parties in apartment blocks, noisy neighbours, vehicles of al kinds, especially large container trucks thundering through quiet village, planes and helicopters flying overhead, large radios carried round in public places and played at maximum volume. New technology has also made its own contribution to noise. A lot of people object to mobile phones, especially when they are used in public places like restaurants or on public transport. Loud conversations on mobile phones invade our thoughts or interrupt the pleasure of meeting friends for a quiet chat. The noise pollution survey revealed a rather surprising and possibly amusing old fashioned source of noise. It turned out to be snoring! Men were found to be the worst offenders. It was revealed that 20% of men in their mid-thirties snore. This figure rises to a staggering 60% of men in their sixties. Against these figures, it was found that only 5% of women snore regularly, while the rest are constantly woken or kept awake by their trumpeting partners. Whatever the source of noise, one thing is certain: silence, it seems, has become a golden memory.',8),(288,48,'The silent village','In this much-travelled world, there are still thousands of places which are inaccessible to tourists. We always assume that villagers in remote places are friendly and hospitable. But people who are cut off not only from foreign tourists, but even from their own countrymen can be hostile to travellers. Visits to really remote villages are seldom enjoyable - as my wife and I discovered during a tour through the Balkans.\r\nWe had spent several days in a small town and visited a number of old churches in the vicinity. These attracted many visitors, for they were not only of great architectural interest, but contained a large number of beautifully preserved frescoes as well. On the day before our departure, several bus loads of tourists descended on the town. This was more than we could bear, so we decided to spend our last day exploring the countryside. Taking a path which led out of the town, we crossed a few fields until we came to a dense wood. We expected the path to end abruptly, but we found that it traced its way through the trees. We tramped through the wood for over two hours until we arrived at a deep stream. We could see that the path continued on the other side, but we had no idea how we could get across the stream. Suddenly my wife spotted a boat moored to the bank. In it there was a boatman fast asleep. We gently woke him up and asked him to ferry us to the other side. Though he was reluctant to do so at first, we eventually persuaded him to take us.\r\nThe path led to a tiny village perched on the steep sides of a mountain. The place consisted of a straggling unmade road which was lined on either side by small houses. Even under a clear blue sky, the village looked forbidding, as all the houses were built of grey mud bricks. The village seemed deserted, the only sign of life being an ugly-looking black goat on a short length of rope tied to a tree in a field nearby. Sitting down on a dilapidated wooden fence near the field, we opened a couple of tins of sardines and had a picnic lunch. All at once, I noticed that my wife seemed to be filled with alarm. Looking up I saw that we were surrounded by children in rags who were looking at us silently as we ate. We offered them food and spoke to them kindly, but they remained motionless. I concluded that they were simply shy of strangers. When we later walked down the main street of the village, we were followed by a silent procession of children. The village which had seemed deserted, immediately came to life. Faces appeared at windows. Men in shirt sleeves stood outside their houses and glared at us. Old women in black shawls peered at us from doorways. The most frightening thing of all was that not a sound could be heard. There was no doubt that we were unwelcome visitors. We needed no further warning. Turning back down the main street, we quickened our pace and made our way rapidly towards the stream where we hoped the boatman was waiting.',8),(289,49,'The ideal servant','It is a good thing my aunt Harriet died years ago. If she were alive today she would not be able to air her views on her favourite topic of conversation: domestic servants. Aunt Harriet lived in that leisurely age when servants were employed to do housework. She had a huge, rambling country house called \'The Gables\'. She was sentimentally attached to this house, for even though it was far too big for her needs, she persisted in living there long after her husband\'s death. Before she grew old, Aunt Harriet used to entertain lavishly. I often visited The Gables when I was a boy. No matter how many guests were present, the great house was always immaculate. The parquet floors shone like mirrors; highly polished silver was displayed in gleaming glass cabinets; even my uncle\'s huge collection of books was kept miraculously free from dust. Aunt Harriet presided over an invisible army of servants that continuously scrubbed, cleaned, and polished. She always referred to them as \'the shifting population\', for they came and went with such frequency that I never even got a chance to learn their names. Though my aunt pursued what was, in those days, an enlightened policy, in that she never allowed her domestic staff to work more than eight hours a day, she was extremely difficult to please. While she always criticized the fickleness of human nature, she carried on an unrelenting search for the ideal servant to the end of her days, even after she had been sadly disillusioned by Bessie.\r\nBessie worked for Aunt Harriet for three years. During that time she so gained my aunt\'s confidence that she was put in charge of the domestic staff. Aunt Harriet could not find words to praise Bessie\'s industriousness and efficiency. In addition to all her other qualifications, Bessie was an expert cook. She acted the role of the perfect servant for three years before Aunt Harriet discovered her \'little weakness\'. After being absent from the Gables for a week, my aunt unexpectedly returned one afternoon with a party of guests and instructed Bessie to prepare dinner. Not only was the meal well below the usual standard, but Bessie seemed unable to walk steadily. She bumped into the furniture and kept mumbling about the guests. When she came in with the last course - a huge pudding - she tripped on the carpet and the pudding went flying through the air, narrowly missed my aunt, and crashed on the dining table with considerable force. Though this caused great mirth among the guests, Aunt Harriet was horrified. She reluctantly came to the conclusion that Bessie was drunk. The guests had, of course, realized this from the moment Bessie opened the door for them and, long before the final catastrophe, had had a difficult time trying to conceal their amusement. The poor girl was dismissed instantly. After her departure, Aunt Harriet discovered that there were piles of empty wine bottles of all shapes and sizes neatly stacked in what had once been Bessie\'s wardrobe. They had mysteriously found their way there from the wine cellar!',8),(290,50,'New Year resolutions','The New Year is a time for resolutions. Mentally, at least, most of us could compile formidable lists of \'dos\' and \'don\'ts\'. The same old favorites recur year in year out with monotonous regularity. We resolve to get up earlier each morning, eat less, find more time to play with the children, do a thousand and one jobs about the house, be nice to people we don\'t\' like, drive carefully, and take the dog for a walk every day. Past experience has taught us that certain accomplishments are beyond attainment. If we remain inveterate smokers, it is only because we have so often experienced the frustration that results from failure. Most of us fail in our efforts at self-improvement because our schemes are too ambitious and we never have time to carry them out. We also make the fundamental error of announcing our resolutions to everybody so that we look even more foolish when we slip back into our bad old ways. Aware of these pitfalls, this year I attempted to keep my resolutions to myself. I limited myself to two modest ambitions: to do physical exercise every morning and to read more of an evening. An all-night party on New Year\'s Eve provided me with a good excuse for not carrying out either of these new resolutions on the first day of the year, but on the second, I applied myself assiduously to the task.\r\nThe daily exercises lasted only eleven minutes and I proposed to do them early in the morning before anyone had got up. The self-discipline required to drag myself out of bed eleven minutes earlier than usual was considerable. Nevertheless, I managed to creep down into the living room for two days before anyone found me out. After jumping about on the carpet and twisting the human frame into uncomfortable positions, I sat down at the breakfast table in an exhausted condition. It was this that betrayed me. The next morning the whole family trooped in to watch the performance. That was really unsettling, but I fended off the taunts and jibes of the family good-humouredly and soon everybody got used to the idea. However, my enthusiasm waned. The time I spent at exercises gradually diminished. Little by little the eleven minutes fell to zero. By January 10th, I was back to where I had started from. I argued that if I spent less time exhausting myself at exercises in the morning, I would keep my mind fresh for reading when I got home from work. Resisting the hypnotizing effect of television, I sat in my room for a few evenings with my eyes glued to a book. One night, however, feeling cold and lonely, I went downstairs and sat in front of the television pretending to read. That proved to be my undoing, for I soon got back to my old bad habit of dozing off in front of the screen. I still haven\'t given up my resolution to do more reading. In fact, I have just bought a book entitled How to Read a Thousand Words a Minute. Perhaps it will solve my problem, but I just haven\'t had time to read it!',8),(291,51,'Predicting the future','Predicting the future is notoriously difficult. Who could have imagined, in the mid 1970s, for example, that by the end of the 20th century, computers would be as common in people\'s homes as TV sets? In the 1970s, computers were common enough, but only in big business, government departments, and large organizations. These were the so-called mainframe machines. Mainframe computers were very large indeed, often occupying whole air-conditioned rooms, employing full-time technicians and run on specially-written software. Though these large machines still exist, many of their functions have been taken over by small powerful personal computers, commonly known as PCs.\r\nIn 1975, a primitive machine called the Altair, was launched in the USA. It can properly be described as the first \'home computer\' and it pointed the way to the future. This was followed, at the end of the 1970s, by a machine called an Apple. In the early 1980s, the computer giant, IBM produced the world\'s first Personal Computer. This ran on an \'operating system\' called DOS, produced by a then small company named Microsoft. The IBM Personal Computer was widely copied. From those humble beginnings, we have seen the development of the user-friendly home computers and multimedia machines which are in common use today.\r\nConsidering how recent these developments are, it is even more remarkable that as long ago as the 1960s, an Englishman, Leon Bagrit, was able to predict some of the uses of computers which we know today. Bagrit dismissed the idea that computers would learn to \'think\' for themselves and would \'rule the world\', which people liked to believe in those days. Bagrit foresaw a time when computers would be small enough to hold in the hand, when they would be capable of providing information about traffic jams and suggesting alternative routes, when they would be used in hospitals to help doctors to diagnose illnesses, when they would relieve office workers and accountants of dull, repetitive clerical work. All these computer uses have become commonplace. Of course, Leon Bagrit could not possibly have foreseen the development of the Internet, the worldwide system that enables us to communicate instantly with anyone in any part of the world by using computers linked to telephone networks. Nor could he have foreseen how we could use the Internet to obtain information on every known subject, so we can read it on a screen in our homes and even print it as well if we want to. Computers have become smaller and smaller, more and more powerful and cheaper and cheaper. This is what makes Leon Bagrit\'s predictions particularly remarkable. If he, or someone like him, were alive today, he might be able to tell us what to expect in the next fifty years.',8),(292,52,'Mud is mud','My cousin, Harry, keeps a large curiously-shaped bottle on permanent display in his study. Despite the fact that the bottle is tinted a delicate shade of green, an observant visitor would soon notice that it is filled with what looks like a thick, grayish substance. If you were to ask Harry what was in the bottle, he would tell you that it contained perfumed mud. If you expressed doubt or surprise, he would immediately invite you to smell it and then to rub some into your skin. This brief experiment would dispel any further doubts you might have. The bottle really does contain perfumed mud. How Harry came into the possession of this outlandish stuff makes an interesting story which he is fond of relating. Furthermore, the acquisition of this bottle cured him of a bad habit he had been developing for years.\r\nHarry used to consider it a great joke to go into expensive cosmetic shops and make outrageous requests for goods that do not exist. He would invent fanciful names on the spot. On entering a shop, he would ask for a new perfume called \'Scented Shadow\' or for \'insoluble bath cubes\'. If a shop assistant told him she had not heard of it, he would pretend to be considerably put out. He loved to be told that one of his imaginary products was temporarily out of stock and he would faithfully promise to call again at some future date, but of course he never did. How Harry managed to keep a straight face during these performances is quite beyond me.\r\nHarry does not need to be prompted to explain how he bought his precious bottle of mud. One day, he went to an exclusive shop in London and asked for \'Myrolite\', the shop assistant looked puzzled and Harry repeated the word, slowly stressing each syllable. When the woman shook her head in bewilderment, Harry went on to explain that \'myrolite\' was a hard, amber-like substance which could be used to remove freckles. This explanation evidently conveyed something to the woman who searched shelf after shelf. She produced all sorts of weird concoctions, but none of them met with Harry\'s requirements. When Harry put on his act of being mildly annoyed, the assistant promised to order some for him. Intoxicated by his success, Harry then asked for perfumed mud. He expected the assistant to look at him in blank astonishment. However, it was his turn to be surprised, for the woman\'s eyes immediately lit up and she fetched several bottles which she placed on the counter for Harry to inspect. For once, Harry had to admit defeat. He picked up what seemed to be the smallest bottle and discreetly asked the price. He was glad to get away with a mere twenty pounds and he beat a hasty retreat, clutching the precious bottle under his arm. From then on, Harry decided that this little game he had invented might prove to be expensive. The curious bottle, which now adorns the bookcase in his study, was his first and last purchase of rare cosmetics.',8),(293,53,'In the public interest','The Scandinavian countries are much admired all over the world for their enlightened social policies. Sweden has evolved an excellent system for protecting the individual citizen from high-handed or incompetent public officers. The system has worked so well, that it has been adopted in other countries too.\r\nThe Swedes were the first to recognize that public official like civil servants, police officers, health inspectors or tax-collectors can make mistakes or act over-zealously in the belief that they are serving the public. As long ago as 1809, the Swedish Parliament introduced a scheme to safeguard the interest of the individual. A parliamentary committee representing all political parties appoints a person who is suitably qualified to investigate private grievances against the State. The official title of the person is \'Justiteombudsman\', but the Swedes commonly refer to him as the \'J.O.\' or \'Ombudsman\'. The Ombudsman is not subject to political pressure. He investigates complaints large and small that come to him from all levels of society. As complaints must be made in writing, the Ombudsman receives an average of 1,200 letters a year. He has eight lawyer assistants to help him and examines every single letter in detail. There is nothing secretive about the Ombudsman\'s work, for his correspondence is open to public inspection. If a citizen\'s complaint is justified, the Ombudsman will act on his behalf. The action he takes varies according to the nature of the complaint. He may gently reprimand an official or even suggest to parliament that a law be altered. The following case is a typical example of the Ombudsman\'s work.\r\nA foreigner living in a Swedish village wrote to the Ombudsman complaining that he had been ill-treated by the police, simply because he was a foreigner. The Ombudsman immediately wrote to the Chief of Police in the district asking him to send a record of the case. There was nothing in the record to show that the foreigner\'s complaint was justified and the Chief of Police strongly denied the accusation. It was impossible for the Ombudsman to take action, but when he received a similar complaint from another foreigner in the same village, he immediately sent one of his lawyers to investigate the matter. The lawyer ascertained that a policeman had indeed dealt roughly with foreigners on several occasions. The fact that the policeman was prejudiced against foreigners could not be recorded in the official files. It was only possible for the Ombudsman to find this out by sending one of his representatives to check the facts. The policeman in question was severely reprimanded and was informed that if any further complaints were lodged against him, he would be prosecuted. The Ombudsman\'s prompt action at once put an end to an unpleasant practice which might have gone unnoticed.',8),(294,54,'Instinct or cleverness?','We have been brought up to fear insects. We regard them as unnecessary creatures that do more harm than good. We continually wage war on them, for they contaminate our food, carry diseases, or devour our crops. They sting or bite without provocation; they fly uninvited into our rooms on summer nights, or beat against our lighted windows. We live in dread not only of unpleasant insects like spiders or wasps, but of quite harmless one like moths. Reading about them increases our understanding without dispelling our fears. Knowing that the industrious ant lives in a highly organized society does nothing to prevent us from being filled with revulsion when we find hordes of them crawling over a carefully prepared picnic lunch. No matter how much we like honey, or how much we have read about the uncanny sense of direction which bees possess, we have a horror of being stung. Most of our fears are unreasonable, but they are impossible to erase. At the same time, however, insects are strangely fascinating. We enjoy reading about them, especially when we find that, like the praying mantis, they lead perfectly horrible lives. We enjoy staring at them, entranced as they go about their business, unaware (we hope) of our presence. Who has not stood in awe at the sight of a spider pouncing on a fly, or a column of ants triumphantly bearing home an enormous dead beetle?\r\nLast summer I spent days in the garden watching thousands of ants crawling up the trunk of my prize peach tree. The tree has grown against a warm wall on a sheltered side of the house. I am especially proud of it, not only because it has survived several severe winters, but because it occasionally produces luscious peaches. During the summer, I noticed that the leaves of the tree were beginning to wither. Clusters of tiny insects called aphids were to be found on the underside of the leaves. They were visited by a large colony of ants which obtained a sort of honey from them. I immediately embarked on an experiment which, even though if failed to get rid of the ants, kept me fascinated for twenty-four hours. I bound the base of the tree with sticky tape, making it impossible for the ants to reach the aphids. The tape was so stick that they did not dare to cross it. For a long time. I watched them scurrying around the base of the tree in bewilderment. I even went out at midnight with a torch and noted with satisfaction (and surprise) that the ants were still swarming around the sticky tape without being able to do anything about it. I got up early next morning hoping to find that the ants had given up in despair. Instead, I saw that they had discovered a new route. They were climbing up the wall of the house and then on to the leaves of the tree. I realized sadly that I had been completely defeated by their ingenuity. The ants had been quick to find an answer to my thoroughly unscientific methods!',8),(295,55,'From the earth: Greetings','Recent developments in astronomy have made it possible to detect planets in our own Milky Way and in other galaxies. This is a major achievement because, in relative terms, planets are very small and do not emit light. Finding planets is proving hard enough, but finding life on them will prove infinitely more difficult. The first question to answer is whether a planet can actually support life. In our own solar system, for example, Venus is far too hot and Mars is far too cold to support life. Only the Earth provides ideal conditions, and even here it has taken more than four billion years for plant and animal life to evolve.\r\nWhether a planet can support life depends on the size and brightness of its star, that is its \'sun\'. Imagine a star up to twenty times larger, brighter and hotter than our own sun. A planet would have to be a very long way from it to be capable of supporting life. Alternatively, if the star were small, the life-supporting planet would have to have a close orbit round it and also provide the perfect conditions for life forms to develop. But how would we find such a planet? At present, there is no telescope in existence that is capable of detecting the presence of life. The development of such a telescope will be one of the great astronomical projects of the twenty-first century.\r\nIt is impossible to look for life on another planet using earth-based telescopes. Our own warm atmosphere and the heat generated by the telescope would make it impossible to detect objects as small as planets. Even a telescope in orbit round the earth, like the very successful Hubble telescope, would not be suitable because of the dust particles in our solar system. A telescope would have to be as far away as the planet Jupiter to look for life in outer space, because the dust becomes thinner the further we travel towards the outer edges of our own solar system. Once we detected a planet, we would have to find a way of blotting out the light from its star, so that we would be able to \'see\' the planet properly and analyze its atmosphere. In the first instance, we would be looking for plant life, rather than \'little green men\'. The life forms most likely to develop on a planet would be bacteria. It is bacteria that have generated the oxygen we breathe on earth. For most of the earth\'s history they have been the only form of life on our planet. As Earth-dwellers, we always cherish the hope that we will be visited by little green men and that we will be able to communicate with them. But this hope is always in the realms of science fiction. If we were able to discover lowly forms of life like bacteria on another planet, it would completely change our view of ourselves. As Daniel Goldin of NASA observed, \'Finding life elsewhere would change everything. No human endeavor or thought would be unchanged by it.\'',8),(296,56,'Our neighbour, the river','The river which forms the eastern boundary of our farm has always played an important part in our lives. Without it we could not make a living. There is only enough spring water to supply the needs of the houses, so we have to pump from the river for farm use. We tell river all our secrets. We know instinctively, just as beekeepers with their bees, that misfortune might overtake us if the important events of our lives were not related to it.\r\nWe have special river birthday parties in the summer. Sometimes we go upstream to a favourite backwater, sometimes we have our party at the boathouse, which a predecessor of ours at the farm built in the meadow hard by the deepest pool for swimming and diving. In a heat wave we choose a midnight birthday party and that is the most exciting of all. We welcome the seasons by the riverside, crowning the youngest girl with flowers in the spring, holding a summer festival on Midsummer Eve, giving thanks for the harvest in the autumn, and throwing a holly wreath into the current in the winter.\r\nAfter a long period of rain the river may overflow its banks. This is a rare occurrence as our climate seldom goes to extremes. We are lucky in that only the lower fields, which make up a very small proportion of our farm, are effected by flooding, but other farms are less favorably sited, and flooding can sometimes spell disaster for their owners.\r\nOne bad winter we watched the river creep up the lower meadows. All the cattle had been moved into stalls and we stood to lose little. We were, however, worried about our nearest neighbors, whose farm was low lying and who were newcomers to the district. As the floods had put the telephone out of order, we could not find out how they were managing. From an attic window we could get a sweeping view of the river where their land joined ours, and at the most critical juncture we took turns in watching that point. The first sign of disaster was a dead sheep floating down. Next came a horse, swimming bravely, but we were afraid that the strength of the current would prevent its landing anywhere before it became exhausted. Suddenly a raft appeared, looking rather like Noah\'s ark, carrying the whole family, a few hens, the dogs, a cat, and bird in a cage. We realized that they must have become unduly frightened by the rising flood, for their house, which had sound foundations, would have stood stoutly even if it had been almost submerged. The men of our family waded down through our flooded meadows with boathooks, in the hope of being able to grapple a corner of the raft and pull it out of the current towards our bank. We still think it a miracle that they were able to do so.',8),(297,57,'Back in the old country','I stopped to let the car cool off and to study the map. I had expected to be near my objective by now, but everything still seemed alien to me. I was only five when my father had taken me abroad, and that was eighteen years ago. When my mother had died after a tragic accident, he did not quickly recover from the shock and loneliness. Everything around him was full of her presence, continually reopening the wound. So he decided to emigrate. In the new country he became absorbed in making a new life for the two of us, so that he gradually ceased to grieve. He did not marry again and I was brought up without a woman\'s care; but I lacked for nothing, for he was both father and mother to me. He always meant to go back on day, but not to stay. His roots and mine had become too firmly embedded in the new land. But he wanted to see the old folk again and to visit my mother\'s grave. He became mortally ill a few months before we had planned to go and, when he knew that he was dying, he made me promise to go on my own.\r\nI hired a car the day after landing and bought a comprehensive book of maps, which I found most helpful on the cross-country journey, but which I did not think I should need on the last stage. It was not that I actually remembered anything at all. But my father had described over and over again what we should see at every milestone, after leaving the nearest town, so that I was positive I should recognize it as familiar territory. Well, I had been wrong, for I was now lost.\r\nI looked at the map and then at the millimeter. I had come ten miles since leaving the town, and at this point, according to my father, I should be looking at farms and cottages in a valley, with the spire of the church of our village showing in the far distance. I could see no valley, no farms, no cottages and no church spire - only a lake. I decided that I must have taken a wrong turning somewhere. So I drove back to the town and began to retrace the route, taking frequent glances at the map. I landed up at the same corner. The curious thing was that the lake was not marked on the map. I felt as if I had stumbled into a nightmare country, as you sometimes do in dreams. And, as in a nightmare, there was nobody in sight to help me. Fortunately for me, as I was wondering what to do next, there appeared on the horizon a man on horseback, riding in my direction. I waited till he came near, then I asked him the way to our old village. He said that there was now no village. I thought he must have misunderstood me, so I repeated its name. This time he pointed to the lake. The village no longer existed because it had been submerged, and all the valley too. The lake was not a natural one, but a man-made reservoir.',8),(298,58,'A spot of bother','The old lady was glad to be back at the block of flats where she lived. Her shopping had tired her and her basket had grown heavier with every step of the way home. In the lift her thoughts were on lunch and a good rest; but when she got out at her own floor, both were forgotten in her sudden discovery that her front door was open. She was thinking that she must reprimand her home help the next morning for such a monstrous piece of negligence, when she remembered that she had gone shopping after the home help had left and she knew that she had turned both keys in their locks, She walked slowly into the hall and at once noticed that all the room doors were open, yet following her regular practice she had shut them before going out. Looking into the drawing room, she saw a scene of confusion over by her writing desk. It was as clear as daylight then that burglars had forced an entry during her absence. Her first impulse was to go round all the rooms looking for the thieves, but then she decided that at her age it might be more prudent to have someone with her, so she went to fetch the porter from his basement. By this time her legs were beginning to tremble, so she sat down and accepted a cup of very strong tea, while he telephoned the police. Then, her composure regained, she was ready to set off with the porter\'s assistance to search for any intruders who might still be lurking in her flat.\r\nThey went through the rooms, being careful to touch nothing, as they did not want to hinder the police in their search for fingerprints. The chaos was inconceivable. She had lived in the flat for thirty years and was a veritable magpie at hoarding; and it seemed as though everything she possessed had been tossed out and turned over and over. At least sorting out the things she should have discarded years ago was now being made easier for her. Then a police inspector arrived with a constable and she told them of her discovery of the ransacked flat. The inspector began to look for fingerprints, while the constable checked that the front door locks had not been forced, thereby proving that the burglars had either used skeleton keys or entered over the balcony. There was no trace of fingerprints, but the inspector found a dirty red bundle that contained jewellery which the old lady said was not hers. So their entry into this flat was apparently not the burglars\' first job that day and they must have been disturbed. The inspector then asked the old lady to try to check what was missing by the next day and advised her not to stay alone in the flat for a few nights. The old lady thought he was a fussy creature, but since the porter agreed with him, she rang up her daughter and asked for her help in what she described as a little spot of bother.',8),(299,59,'Collecting','People tend to amass possessions, sometimes without being aware of doing so. Indeed they can have a delightful surprise when they find something useful which they did not know they owned. Those who never have to move house become indiscriminate collectors of what can only be described as clutter. They leave unwanted objects in drawers, cupboards and attics for years, in the belief that they may one day need just those very things. As they grow old, people also accumulate belongings for two other reasons, lack of physical and mental energy, both of which are essential in turning out and throwing away, and sentiment. Things owned for a long time are full associations with the past, perhaps with relatives who are dead, and so they gradually acquire a value beyond their true worth.\r\nSome things are collected deliberately in the home in an attempt to avoid waste. Among these I would list string and brown paper, kept by thrifty people when a parcel has been opened, to save buying these two requisites. Collecting small items can easily become a mania. I know someone who always cuts sketches out from newspapers of model clothes that she would like to buy if she had the money. As she is not rich, the chances that she will ever be able to afford such purchases are remote; but she is never sufficiently strong-minded to be able to stop the practice. It is a harmless habit, but it litters up her desk to such an extent that every time she opens it, loose bits of paper fall out in every direction.\r\nCollecting as a serous hobby is quite different and has many advantages. It provides relaxation for leisure hours, as just looking at one\'s treasures is always a joy. One does not have to go outside for amusement, since the collection is housed at home. Whatever it consists of, stamps, records, first editions of books, china, glass, antique furniture, pictures, model cars, stuffed birds, toy animals, there is always something to do in connection with it, from finding the right place for the latest addition, to verifying facts in reference books. This hobby educates one not only in the chosen subject, but also in general matters which have some bearing on it. There are also other benefits. One wants to meet like-minded collectors, to get advice, to compare notes, to exchange articles, to show off the latest find. So one\'s circle of friends grows. Soon the hobby leads to travel, perhaps to a meeting in another town, possibly a trip abroad in search of a rare specimen, for collectors are not confined to any one country. Over the years, one may well become a authority on one\'s hobby and will very probably be asked to give informal talks to little gatherings and then, if successful, to larger audiences. In this way self-confidence grows, first from mastering a subject, then from being able to talk about it. Collecting, by occupying spare time so constructively, makes a person contented, with no time for boredom.',8),(300,60,'Too early and too late','Punctuality is a necessary habit in all public affairs in civilized society. Without it, nothing could ever be brought to a conclusion; everything would be in state of chaos. Only in a sparsely-populated rural community is it possible to disregard it. In ordinary living, there can be some tolerance of unpunctuality. The intellectual, who is working on some abstruse problem, has everything coordinated and organized for the matter in hand. He is therefore forgiven if late for a dinner party. But people are often reproached for unpunctuality when their only fault is cutting things fine. It is hard for energetic, quick-minded people to waste time, so they are often tempted to finish a job before setting out to keep an appointment. If no accidents occur on the way, like punctured tires, diversions of traffic, sudden descent of fog, they will be on time. They are often more industrious, useful citizens than those who are never late. The over-punctual can be as much a trial to others as the unpunctual. The guest who arrives half an hour too soon is the greatest nuisance. Some friends of my family had this irritating habit. The only thing to do was ask them to come half an hour later than the other guests. Then they arrived just when we wanted them.\r\nIf you are catching a train, it is always better to be comfortably early than even a fraction of a minute too late. Although being early may mean wasting a little time, this will be less than if you miss the train and have to wait an hour or more for the next one; and you avoid the frustration of arriving at the very moment when the train is drawing out of the station and being unable to get on it. An even harder situation is to be on the platform in good time for a train and still to see it go off without you. Such an experience befell a certain young girl the first time she was traveling alone.\r\nShe entered the station twenty minutes before the train was due, since her parents had impressed upon her that it would be unforgivable to miss it and cause the friends with whom she was going to stay to make two journeys to meet her. She gave her luggage to a porter and showed him her ticket. To her horror he said that she was two hours too soon. She felt inhere handbag for the piece of paper on which her father had written down all the details of the journey and gave it to the porter. He agreed that a train did come into the station at the time on the paper and that it did stop, but only to take on mail, not passengers. The girl asked to see a timetable, feeling sure that her father could not have made such a mistake. The porter went to fetch one and arrive back with the station master, who produced it with a flourish and pointed out a microscopic \'o\' beside the time of the arrival of the train at his station; this little \'o\' indicated that the train only stopped for mail. Just as that moment the train came into the station. The girl, tears streaming down her face, begged to be allowed to slip into the guard\'s van. But the station master was adamant: rules could not be broken and she had to watch that train disappear towards her destination while she was left behind.',8),(301,1,'Finding fossil man','We can read of things that happened 5,000 years ago in the Near East, where people first learned to write. But there are some parts of the world where even now people cannot write. The only way that they can preserve their history is to recount it as sagas - legends handed down from one generation of storytellers to another. These legends are useful because they can tell us something about migrations of people who lived long ago, but none could write down what they did. Anthropologists wondered where the remote ancestors of the Polynesian peoples now living in the Pacific Islands came from. The sagas of these people explain that some of them came from Indonesia about 2,000 years ago.\r\nBut the first people who were like ourselves lived so long ago that even their sagas, if they had any, are forgotten. So archaeologists have neither history nor legends to help them to find out where the first \'modern men\' came from.\r\nFortunately, however, ancient men made tools of stone, especially flint, because this is easier to shape than other kinds. They may also have used wood and skins, but these have rotted away. Stone does not decay, and so the tools of long ago have remained when even the bones of the men who made them have disappeared without trace.',9),(302,2,'Spare that spider','Why, you may wonder, should spiders be our friends? Because they destroy so many insects, and insects include some of the greatest enemies of the human race. Insects would make it impossible for us to live in the world; they would devour all our crops and kill our flocks and herds, if it were not for the protection we get from insect-eating animals. We owe a lot to the birds and beasts who eat insects but all of them put together kill only a fraction of the number destroyed by spiders. Moreover, unlike some of the other insect eaters, spiders never do the harm to us or our belongings.\r\nSpiders are not insects, as many people think, nor even nearly related to them. One can tell the difference almost at a glance, for a spider always has eight legs and insect never more than six.\r\nHow many spiders are engaged in this work no our behalf? One authority on spiders made a census of the spiders in a grass field in the south of England, and he estimated that there were more than 2,250,000 in one acre; that is something like 6,000,000 spiders of different kinds on a football pitch. Spiders are busy for at least half the year in killing insects. It is impossible to make more than the wildest guess at how many they kill, but they are hungry creatures, not content with only three meals a day. It has been estimated that the weight of all the insects destroyed by spiders in Britain in one year would be greater than the total weight of all the human beings in the country.',9),(303,3,'Matterhorn man','Modern alpinists try to climb mountains by a route which will give them good sport, and the more difficult it is, the more highly it is regarded. In the pioneering days, however, this was not the case at all. The early climbers were looking for the easiest way to the top, because the summit was the prize they sought, especially if it and never been attained before. It is true that during their explorations they often faced difficulties and dangers of the most perilous nature, equipped in a manner with would make a modern climber shudder at the thought, but they did not go out of their way to court such excitement. They had a single aim, a solitary goal - the top!\r\nIt is hard for us to realize nowadays how difficult it was for the pioneers. Except for one or two places such as Zermatt and Chamonix, which had rapidly become popular, Alpine village tended to be impoverished settlements cut off from civilization by the high mountains. Such inns as there were generally dirty and flea-ridden; the food simply local cheese accompanied by bread often twelve months old, all washed down with coarse wine. Often a valley boasted no inn at all, and climbers found shelter wherever they could - sometimes with the local priest (who was usually as poor as his parishioners), sometimes with shepherds or cheese-makers. Invariably the background was the same: dirt and poverty, and very uncomfortable. For men accustomed to eating seven-course dinners and sleeping between fine linen sheets at home, the change to the Alps must have been very hard indeed.',9),(304,4,'Seeing hands','Several cases have been reported in Russia recently of people who can read and detect colours with their fingers, and even see through solid doors and walls. One case concerns and eleven-year-old schoolgirl, Vera Petrova, who has normal vision but who can also perceive things with different parts of her skin, and through solid walls. This ability was first noticed by her father. One day she came into his office and happened to put her hands on the door of a locked safe. Suddenly she asked her father why he kept so many old newspapers locked away there, and even described the way they were done up in bundles.\r\nVera\'s curious talent was brought to the notice of a scientific research institute in the town of Ulyanovsk, near where she lives, and in April she was given a series of tests by a special commission of the Ministry of Health of the Russian Federal Republic. During these tests she was able to read a newspaper through an opaque screen and, stranger still, by moving her elbow over a child\'s game of Lotto she was able to describe the figures and colours printed on it; and, in another instance, wearing stockings and slippers, to make out with her foot the outlines and colours of a picture hidden under a carpet. Other experiments showed that her knees and shoulders had a similar sensitivity. During all these tests Vera was blindfold; and, indeed, except when blindfold she lacked the ability to perceive things with her skin. It was also found that although she could perceive things with her fingers this ability ceased the moment her hands were wet.',9),(305,5,'Youth','People are always talking about \'the problem of youth\'. If there is one - which I take leave to doubt - then it is older people who create it, not the young themselves. Let us get down to fundamentals and agree that the young are after all human beings - people just like their elders. There is only one difference between an old man and a young one: the young man has a glorious future before him and the old one has a splendid future behind him: and maybe that is where the rub is.\r\nWhen I was a teenager, I felt that I was just young and uncertain - that I was a new boy in a huge school, and I would have been very pleased to be regarded as something so interesting as a problem. For one thing, being a problem gives you a certain identity, and that is one of the things the young are busily engaged in seeking.\r\nI find young people exciting. They have an air of freedom, and they have not a dreary commitment to mean ambitions or love of comfort. They are not anxious social climbers, and they have no devotion to material things. All this seems to me to link them with life, and the origins of things. It\'s as if they were, in some sense, cosmic beings in violent and lovely contrast with us suburban creatures. All that is in my mind when I meet a young person. He may be conceited, ill-mannered, presumptuous or fatuous, but I do not turn for protection to dreary cliches about respect of elders - as if mere age were a reason for respect. I accept that we are equals, and I will argue with him, as an equal, if I think he is wrong.',9),(306,6,'The sporting spirit','I am always amazed when I hear people saying that sport creates goodwill between the nations, and that if only the common peoples of the would could meet one another at football or cricket, they would have no inclination to meet on the battlefield. Even if one didn\'t know from concrete examples (the 1936 Olympic Games, for instance) that international sporting contests lead to orgies of hatred, one could deduce it from general principles.\r\nNearly all the sports practised nowadays are competitive. You play to win, and the game has little meaning unless you do your utmost to win. On the village green, where you pick up sides and no feeling of local patriotism is involved, it is possible to play simply for the fun and exercise: but as soon as the question of prestige arises, as soon as you feel that you and some larger unit will be disgraced if you lose, the most savage combative instincts are aroused. Anyone who has played even in a school football match knows this. At the international level, sport is frankly mimic warfare. But the significant thing is not the behaviour of the players but the attitude of the spectators: and, behind the spectators, of the nations who work themselves into furies over these absurd contests, and seriously believe - at any rate for short periods - that running, jumping and kicking a ball are tests of national virtue.',9),(307,7,'Bats','Not all sounds made by animals serve as language, and we have only to turn to that extraordinary discovery of echo-location in bats to see a case in which the voice plays a strictly utilitarian role.\r\nTo get a full appreciation of what this means we must turn first to some recent human inventions. Everyone knows that if he shouts in the vicinity of a wall or a mountainside, an echo will come back. The further off this solid obstruction, the longer time will elapse for the return of the echo. A sound made by tapping on the hull of a ship will be reflected from the sea bottom, and by measuring the time interval between the taps and the receipt of the echoes, the depth of the sea at that point can be calculated. So was born the echo-sounding apparatus, now in general use in ships. Every solid object will reflect a sound, varying according to the size and nature of the object. A shoal of fish will do this. So it is a comparatively simple step from locating the sea bottom to locating a shoal of fish. With experience, and with improved apparatus, it is now possible not only to locate a shoal but to tell if it is herring, cod, or other well-known fish, by the pattern of its echo.\r\nIt has been found that certain bats emit squeaks and by receiving the echoes, they can locate and steer clear of obstacles - or locate flying insects on which they feed. This echo-location in bats is often compared with radar, the principle of which is similar.',9),(308,8,'Trading standards','Chickens slaughtered in the United States, claim officials in Brussels, are not fit to grace European tables. No, say the American: our fowl are fine, we simply clean them in a different way. These days, it is differences in national regulations, far more than tariffs, that put sand in the wheels of trade between rich countries. It is not just farmers who are complaining. An electric razor that meets the European Union\'s safety standards must be approved by American testers before it can be sold in the United States, and an American-made dialysis machine needs the EU\'s okay before it hits the market in Europe.\r\nAs it happens, a razor that is safe in Europe is unlikely to electrocute Americans. So, ask businesses on both sides of the Atlantic, why have two lots of tests where one would do? Politicians agree, in principle, so America and the EU have been trying to reach a deal which would eliminate the need to double-test many products. They hope to finish in time for a trade summit between America and the EU on May 28th. Although negotiators are optimistic, the details are complex enough that they may be hard-pressed to get a deal at all.\r\nWhy? One difficulty is to construct the agreements. The Americans would happily reach one accord on standards for medical devices and them hammer out different pacts covering, say, electronic goods and drug manufacturing. The EU - following fine continental traditions - wants agreement on general principles, which could be applied to many types of products and perhaps extended to other countries.',9),(309,9,'Royal espionage','Alfred the Great acted as his own spy, visiting Danish camps disguised as a minstrel. In those days wandering minstrels were welcome everywhere. They were not fighting men, and their harp was their passport. Alfred had learned many of their ballads in his youth, and could vary his programme with acrobatic tricks and simple conjuring.\r\nWhile Alfred\'s little army slowly began to gather at Athelney, the king himself set out to penetrate the camp of Guthrum, the commander of the Danish invaders. These had settled down for the winter at Chippenham: thither Alfred went. He noticed at once that discipline was slack: the Danes had the self-confidence of conquerors, and their security precautions were casual. They lived well, on the proceeds of raids on neighbouring regions. There they collected women as well as food and drink, and a life of ease had made them soft.\r\nAlfred stayed in the camp a week before he returned to Athelney. The force there assembled was trivial compared with the Danish horde. But Alfred had deduced that the Danes were no longer fit for prolonged battle: and that their commissariat had no organization, but depended on irregular raids.\r\nSo, faced with the Danish advance, Alfred did not risk open battle but harried the enemy. He was constantly on the move, drawing the Danes after him. His patrols halted the raiding parties: hunger assailed the Danish army. Now Alfred began a long series of skirmishes - and within a month the Danes had surrendered. The episode could reasonably serve as a unique epic of royal espionage!',10),(310,10,'Silicon valley','Technology trends may push Silicon Valley back to the future. Carver Mead, a pioneer in integrated circuits and a professor of computer science at the California Institute of Technology, notes there are now work-stations that enable engineers to design, test and produce chips right on their desks, much the way an editor creates a newsletter on a Macintosh. As the time and cost of making a chip drop to a few days and a few hundred dollars, engineers may soon be free to let their imaginations soar without being penalized by expensive failures. Mead predicts that inventors will be able to perfect powerful customized chips over a weekend at the office - spawning a new generation of garage start-ups and giving the U.S. a jump on its foreign rivals in getting new products to market fast. \'We\'ve got more garages with smart people,\' Mead observes. \'We really thrive on anarchy.\'\r\nAnd on Asians. Already, orientals and Asian Americans constitute the majority of the engineering staffs at many Valley firms. And Chinese, Korean, Filipino and Indian engineers are graduating in droves from California\'s colleges. As the heads of next-generation start-ups, these Asian innovators can draw on customs and languages to forge tighter links with crucial Pacific Rim markets. For instance, Alex Au, a Stanford Ph.D. from Hong Kong, has set up a Taiwan factory to challenge Japan\'s near lock on the memory-chip market. India-born N. Damodar Reddy\'s tiny California company reopened an AT&T chip plant in Kansas City last spring with financing from the state of Missouri. Before it becomes a retirement village, Silicon Valley may prove a classroom for building a global business.',10),(311,11,'How to grow old','Some old people are oppressed by the fear of death. In the young there is a justification for this feeling. Young men who have reason to fear that they will be killed in battle may justifiably feel bitter in the thought that they have cheated of the best things that life has to offer. But in an old man who has known human joys and sorrows, and has achieved whatever work it was in him to do, the fear of death is somewhat abject and ignoble. The best way to overcome it - so at least it seems to me - is to make your interests gradually wider and more impersonal, until bit by bit the walls of the ego recede, and your life becomes increasingly merged in the universal life. An individual human existence should be like a river - small at first, narrowly contained within its banks, and rushing passionately past boulders and over waterfalls. Gradually the river grows wider, the banks recede, the waters flow more quietly, and in the end, without any visible break, they become merged in the sea, and painlessly lose their individual being. The man who, in old age, can see his life in this way, will not suffer from the fear of death, since the things he cares for will continue. And if, with the decay of vitality, weariness increases, the thought of rest will be not unwelcome. I should wish to die while still at work, knowing that others will carry on what I can no longer do, and content in the thought that what was possible has been done.',10),(312,12,'Banks and their customers','When anyone opens a current account at a bank, he is lending the bank money, repayment of which he may demand at any time, either in cash or by drawing a cheque in favour of another person. Primarily, the banker-customer relationship is that of debtor and creditor - who is which depending on whether the customer\'s account is in credit or is overdrawn. But, in addition to that basically simple concept, the bank and its customer owe a large number of obligations to one another. Many of these obligations can give rise to problems and complications but a bank customer, unlike, say, a buyer of goods, cannot complain that the law is loaded against him.\r\nThe bank must obey its customer\'s instructions, and not those of anyone else. When, for example, a customer first opens an account, he instructs the bank to debit his account only in respect of cheques draw by himself. He gives the bank specimens of his signature, and there is a very firm rule that the bank has no right or authority to pay out a customer\'s money on a cheques on which its customer\'s signature has been forged. It makes no difference that the forgery may have been a very skilful one: the bank must recognize its customer\'s signature. For this reason there is no risk to the customer in the practice, adopted by banks, of printing the customer\'s name on his cheques. If this facilitates forgery, it is the bank which will lose, not the customer.',10),(313,13,'The search for oil','The deepest holes of all are made for oil, and they go down to as much as 25,000 feet. But we do not need to send men down to get the oil out, as we must with other mineral deposits. The holes are only borings, less than a foot in diameter. My particular experience is largely in oil, and the search for oil has done more to improve deep drilling than any other mining activity. When it has been decided where we are going to drill, we put up at the surface an oil derrick. It has to be tall because it is like a giant block and tackle, and we have to lower into the ground and haul out of the ground great lengths of drill pipe which are rotated by an engine at the top and are fitted with a cutting bit at the bottom.\r\nThe geologist needs to know what rocks the drill has reached, so every so often a sample is obtained with a coring bit. It cuts a clean cylinder of rock, from which can be seen the strata the drill has been cutting through. Once we get down to the oil, it usually flows to the surface because great pressure, either from gas or water, is pushing it. This pressure must be under control, and we control it by means of the mud which we circulate down the drill pipe. We endeavour to avoid the old, romantic idea of a gusher, which wastes oil and gas. We want it to stay down the hole until we can lead it off in a controlled manner.',10),(314,14,'The Butterfly Effect','Beyond two or three days, the world\'s best weather forecasts are speculative, and beyond six or seven they are worthless.\r\nThe Butterfly Effect is the reason. For small pieces of weather - and to a global forecaster, small can mean thunderstorms and blizzards - any prediction deteriorates rapidly. Errors and uncertainties multiply, cascading upward through a chain of turbulent features, from dust devils and squalls up to continent-size eddies that only satellites can see.\r\nThe modern weather models work with a grid of points of the order of sixty miles apart, and even so, some starting data has to guessed, since ground stations and satellites cannot see everywhere. But suppose the earth could be covered with sensors spaced one foot apart, rising at one-foot intervals all the way to the top of the atmosphere. Suppose every sensor gives perfectly accurate readings of temperature, pressure, humidity, and any other quantity a meteorologist would want. Precisely at noon an infinitely powerful computer takes all the data and calculates what will happen at each point at 12.01, then 12.02, then 12.03 ...\r\nThe computer will still be unable to predict whether Princeton, New Jersey, will have sun or rain on a day one month away. At noon the spaces between the sensors will hide fluctuations that the computer will not know about, tiny deviations from the average. By 12.01, those fluctuations will already have created small errors one foot away. Soon the errors will have multiplied to the ten-foot scale, and so on up to the size of the globe.',10),(315,15,'Secrecy in industry','Two factors weigh heavily against the effectiveness of scientific research in industry. One is the general atmosphere of secrecy in which it is carried out, the other the lack of freedom of the individual research worker. In so far as any inquiry is a secret one, it naturally limits all those engaged in carrying it out from effective contact with their fellow scientists either in other countries or in universities, or even, often enough, in other departments of the same firm. The degree of secrecy naturally varies considerably. Some of the bigger firms are engaged in researches which are of such general and fundamental nature that it is a positive advantage to them not to keep them secret. Yet a great many processes depending on such research are sought for with complete secrecy until the stage at which patents can be taken out. Even more processes are never patented at all but kept as secret processes. This applies particularly to chemical industries, where chance discoveries play a much larger part than they do in physical and mechanical industries. Sometimes the secrecy goes to such an extent that the whole nature of the research cannot be mentioned. Many firms, for instance, have great difficulty in obtaining technical or scientific books from libraries because they are unwilling to have their names entered as having taken out such and such a book, for fear the agents of other firms should be able to trace the kind of research they are likely to be undertaking.',10),(316,16,'The modern city','In the organization of industrial life the influence of the factory upon the physiological and mental state of the workers has been completely neglected. Modern industry is based on the conception of the maximum production at lowest cost, in order that an individual or a group of individuals may earn as much money as possible. It has expanded without any idea of the true nature of the human beings who run the machines, and without giving any consideration to the effects produced on the individuals and on their descendants by the artificial mode of existence imposed by the factory. The great cities have been built with no regard for us. The shape and dimensions of the skyscrapers depend entirely on the necessity of obtaining the maximum income per square foot of ground, and of offering to the tenants offices and apartments that please them. This caused the construction of gigantic buildings where too large masses of human beings are crowded together. Civilized men like such a way of living. While they enjoy the comfort and banal luxury of their dwelling, they do not realize that they are deprived of the necessities of life. The modern city consists of monstrous edifices and of dark, narrow streets full of petrol fumes and toxic gases, torn by the noise of the taxicabs, lorries and buses, and thronged ceaselessly by great crowds. Obviously, it has not been planned for the good of its inhabitants.',10),(317,17,'A man-made disease','In the early days of the settlement of Australia, enterprising settlers unwisely introduced the European rabbit. This rabbit had no natural enemies in the Antipodes, so that it multiplied with that promiscuous abandon characteristic of rabbits. It overran a whole continent. It caused devastation by burrowing and by devouring the herbage which might have maintained millions of sheep and cattle. Scientists discovered that this particular variety of rabbit (and apparently no other animal) was susceptible to a fatal virus disease, myxomatosis. By infecting animals and letting them loose in the burrows, local epidemics of this disease could be created. Later it was found that there was a type of mosquito which acted as the carrier of this disease and passed it on to the rabbits. So while the rest of the world was trying to get rid of mosquitoes, Australia was encouraging this one. It effectively spread the disease all over the continent and drastically reduced the rabbit population. It later became apparent that rabbits were developing a degree of resistance to this disease, so that the rabbit population was unlikely to be completely exterminated. There were hopes, however, that the problem of the rabbit would become manageable.\r\nIronically, Europe, which had bequeathed the rabbit as a pest to Australia, acquired this man-made disease as a pestilence. A French physician decided to get rid of the wild rabbits on his own estate and introduced myxomatosis. It did not, however, remain within the confines of his estate. It spread through France, Where wild rabbits are not generally regarded as a pest but as sport and a useful food supply, and it spread to Britain where wild rabbits are regarded as a pest but where domesticated rabbits, equally susceptible to the disease, are the basis of a profitable fur industry. The question became one of whether Man could control the disease he had invented.',11),(318,18,'Porpoises','There has long been a superstition among mariners that porpoises will save drowning men by pushing them to the surface, or protect them from sharks by surrounding them in defensive formation. Marine Studio biologists have pointed out that, however intelligent they may be, it is probably a mistake to credit dolphins with any motive of lifesaving. On the occasions when they have pushed to shore an unconscious human being they have much more likely done it out of curiosity or for sport, as in riding the bow waves of a ship. In 1928 some porpoises were photographed working like beavers to push ashore a waterlogged mattress. If, as has been reported, they have protected humans from sharks, it may have been because curiosity attracted them and because the scent of a possible meal attracted the sharks. Porpoises and sharks are natural enemies. It is possible that upon such an occasion a battle ensued, with the sharks being driven away or killed.\r\nWhether it be bird, fish or beast, the porpoise is intrigued with anything that is alive. They are constantly after the turtles, who peacefully submit to all sorts of indignities. One young calf especially enjoyed raising a turtle to the surface with his snout and then shoving him across the tank like an aquaplane. Almost any day a young porpoise may be seen trying to turn a 300-pound sea turtle over by sticking his snout under the edge of his shell and pushing up for dear life. This is not easy, and may require two porpoises working together. In another game, as the turtle swims across the oceanarium, the first porpoise swoops down from above and butts his shell with his belly. This knocks the turtle down several feet. He no sooner recovers his equilibrium than the next porpoise comes along and hits him another crack. Eventually the turtle has been butted all the way down to the floor of the tank. He is now satisfied merely to try to stand up, but as soon as he does so a porpoise knocks him flat. The turtle at last gives up by pulling his feet under his shell and the game is over.',11),(319,19,'The stuff of dreams','It is fairly clear that sleeping period must have some function, and because there is so much of it the function would seem to be important. Speculations about is nature have been going on for literally thousands of years, and one odd finding that makes the problem puzzling is that it looks very much as if sleeping is not simply a matter of giving the body a rest. \'Rest\', in terms of muscle relaxation and so on, can be achieved by a brief period lying, or even sitting down. The body\'s tissues are self-repairing and self-restoring to a degree, and function best when more or less continuously active. In fact a basic amount of movement occurs during sleep which is specifically concerned with preventing muscle inactivity.\r\nIf it is not a question of resting the body, then perhaps it is the brain that needs resting? This might be a plausible hypothesis were it not for two factors. First the electroencephalograph (which is simply a device for recording the electrical activity of the brain by attaching electrodes to the scalp) shows that while there is a change in the pattern of activity during sleep, there is no evidence that the total amount of activity is any less. The second factor is more interesting and more fundamental. Some years ago an American psychiatrist named William Dement published experiments dealing with the recording of eye-movements during sleep. He showed that the average individual\'s sleep cycle is punctuated with peculiar bursts of eye-movements, some drifting and slow, others jerky and rapid. People woken during these periods of eye-movements generally reported that they had been dreaming. When woken at other times they reported no dreams. If one group of people were disturbed from their eye-movement sleep for several nights on end, and another group were disturbed for an equal period of time but when they were not exhibiting eye-movements, the first group began to show some personality disorders while the others seemed more or less unaffected. The implications of all this were that it was not the disturbance of sleep that mattered, but the disturbance of dreaming.',11),(320,20,'Snake poison','How it came about that snakes manufactured poison is a mystery. Over the periods their saliva, a mild, digestive juice like our own, was converted into a poison that defies analysis even today. It was not forced upon them by the survival competition; they could have caught and lived on prey without using poison, just as the thousands of non-poisonous snakes still do. Poison to a snake is merely a luxury; it enables it to get its food with very little effort, no more effort than one bite. And why only snakes? Cats, for instance, would be greatly helped; no running fights with large, fierce rats or tussles with grown rabbits - just a bite and no more effort needed. In fact, it would be an assistance to all carnivores though it would be a two-edged weapon when they fought each other. But, of the vertebrates, unpredictable Nature selected only snakes (and one lizard). One wonders also why Nature, with some snakes, concocted poison of such extreme potency.\r\nIn the conversion of saliva into poison, one might suppose that a fixed process took place. It did not; some snakes manufacture a poison different in every respect from that of others, as different as arsenic is from strychnine, and having different effects. One poison acts on the nerves, the other on the blood.\r\nThe makers of the nerve poison include the mambas and the cobras and their venom is called neurotoxic. Vipers (adders) and rattlesnakes manufacture the blood poison, which is known as haemolytic. Both poisons are unpleasant, but by far the more unpleasant is the blood poison. It is said that the nerve poison is the more primitive of the two, that the blood poison is, so to speak, a newer product from an improved formula. Be that as it may, the nerve poison does its business with man far more quickly than the blood poison. This, however, means nothing. Snakes did not acquire their poison for use against man but for use against prey such as rats and mice, and the effects on these of viperine poison is almost immediate.',11),(321,21,'Williams S. Hart and the early \'Western\' film','William S. Hart was, perhaps, the greatest of all Western stars, for unlike Gary Cooper and John Wayne he appeared in nothing but Westerns. From 1914 to 1924 he was supreme and unchallenged. It was Hart who created the basic formula of the Western film, and devised the protagonist he played in every film he made, the good-bad man, the accidental-noble outlaw, or the honest-but-framed cowboy, or the sheriff made suspect by vicious gossip; in short, the individual in conflict with himself and his frontier environment.\r\nUnlike most of his contemporaries in Hollywood, Hart actually knew something of the old West. He had lived in it as a child when it was already disappearing, and his hero was firmly rooted in his memories and experiences, and in both the history and the mythology of the vanished frontier. And although no period or place in American history has been more absurdly romanticized, myth and reality did join hands in at least one arena, the conflict between the individual and encroaching civilization.\r\nMen accustomed to struggling for survival against the elements and Indians were bewildered by politicians, bankers and businessmen, and unhorsed by fences, laws and alien taboos. Hart\'s good-bad man was always an outsider, always one of the disinherited, and if he found it necessary to shoot a sheriff or rob a bank along the way, his early audiences found it easy to understand and forgive, especially when it was Hart who, in the end, overcame the attacking Indians.\r\nAudiences in the second decade of the twentieth century found it pleasant to escape to a time when life, though hard, was relatively simple. We still do; living in a world in which undeclared aggression, war, hypocrisy, chicanery, anarchy and impending immolation are part of our daily lives, we all want a code to live by.',11),(322,22,'Knowledge and progress','Why does the idea of progress loom so large in the modern world? Surely because progress of a particular kind is actually taking place around us and is becoming more and more manifest. Although mankind has undergone no general improvement in intelligence or morality, it has made extraordinary progress in the accumulation of knowledge. Knowledge began to increase as soon as the thoughts of one individual could be communicated to another by means of speech. With the invention of writing, a great advance was made, for knowledge could then be not only communicated but also stored. Libraries made education possible, and education in its turn added to libraries: the growth of knowledge followed a kind of compound interest law, which was greatly enhanced by the invention of printing. All this was comparatively slow until, with the coming of science, the tempo was suddenly raised. Then knowledge began to be accumulated according to a systematic plan. The trickle became a stream; the stream has now become a torrent. Moreover, as soon as new knowledge is acquired, it is now turned to practical account. What is called \'modern civilization\' is not the result of a balanced development of all man\'s nature, but of accumulated knowledge applied to practical life. The problem now facing humanity is: What is going to be done with all this knowledge? As is so often pointed out, knowledge is a two-edged weapon which can be used equally for good or evil. It is now being used indifferently for both. Could any spectacle, for instance, be more grimly whimsical than that of gunners using science to shatter men\'s bodies while, close at hand, surgeons use it to restore them? We have to ask ourselves very seriously what will happen if this twofold use of knowledge, with its ever-increasing power, continues.',11),(323,23,'Bird flight','No two sorts of birds practise quite the same sort of flight; the varieties are infinite; but two classes may be roughly seen. Any ship that crosses the Pacific is accompanied for many days by the smaller albatross, Which may keep company with the vessel for an hour without visible or more than occasional movement of wing. The currents of air that the walls of the ship direct upwards, as well as in the line of its course, are enough to give the great bird with its immense wings sufficient sustenance and progress. The albatross is the king of the gliders, the class of fliers which harness the air to their purpose, but must yield to its opposition. In the contrary school, the duck is supreme. It comes nearer to the engines with which man has \'conquered\' the air, as he boasts. Duck, and like them the pigeons, are endowed with steel-like muscles, that are a good part of the weight of the bird, and these will ply the short wings with such irresistible power that they can bore for long distances through an opposing gale before exhaustion follows. Their humbler followers, such as partridges, have a like power of strong propulsion, but soon tire. You may pick them up in utter exhaustion, if wind over the sea has driven them to a long journey. The swallow shares the virtues of both schools in highest measure. It tires not, nor does it boast of its power; but belongs to the air, travelling it may be six thousand miles to and from its northern nesting home, feeding its flown young as it flies, and slipping through a medium that seems to help its passage even when the wind is adverse. Such birds do us good, though we no longer take omens from their flight on this side and that; and even the most superstitious villagers no longer take off their hats to the magpie and wish it good-morning.',11),(324,24,'Beauty','A young man sees a sunset and, unable to understand or to express the emotion that it rouses in him, concludes that it must be the gateway to a world that lies beyond. It is difficult for any of us in moments of intense aesthetic experience to resist the suggestion that we are catching a glimpse of a light that shines down to us from a different realm of existence, different and, because the experience is intensely moving, in some way higher. And, though the gleams blind and dazzle, yet do they convey a hint of beauty and serenity greater than we have known or imagined. Greater too than we can describe; for language, which was invented to convey the meanings of this world, cannot readily be fitted to the uses of another.\r\nThat all great has this power of suggesting a world beyond is undeniable. In some moods, Nature shares it. There is no sky in June so blue that it does not point forward to a bluer, no sunset so beautiful that it does not waken the vision of a greater beauty, a vision which passes before it is fully glimpsed, and in passing leaves and indefinable longing and regret. But, if this world is not merely a bad joke, life a vulgar flare amid the cool radiance of the stars, and existence an empty laugh braying across the mysteries; if these intimations of a something behind and beyond are not evil humour born of indigestion, or whimsies sent by the devil to mock and madden us. if, in a word, beauty means something, yet we must not seek to interpret the meaning. If we glimpse the unutterable, it is unwise to try to utter it, nor should we seek to invest with significance that which we cannot grasp. Beauty in terms of our human meanings is meaningless.',11),(325,25,'Non-auditory effects of noise','Many people in industry and the Services, who have practical experience of noise, regard any investigation of this question as a waste of time; they are not prepared even to admit the possibility that noise affects people. On the other hand, those who dislike noise will sometimes use most inadequate evidence to support their pleas for a quieter society. This is a pity, because noise abatement really is a good cause, and it is likely to be discredited if it gets to be associated with bad science.\r\nOne allegation often made is that noise produces mental illness. A recent article in a weekly newspaper, for instance, was headed with a striking illustration of a lady in a state of considerable distress, with the caption \'She was yet another victim, reduced to a screaming wreck\'. On turning eagerly to the text, one learns that the lady was a typist who found the sound of office typewriters worried her more and more until eventually she had to go into a mental hospital. Now the snag in this sort of anecdote is of course that one cannot distinguish cause and effect. Was the noise a cause of the illness, or were the complaints about noise merely a symptom? Another patient might equally well complain that her neighbours were combining to slander her and persecute her, and yet one might be cautious about believing this statement.\r\nWhat is needed in case of noise is a study of large numbers of people living under noisy conditions, to discover whether they are mentally ill more often than other people are. Some time ago the United States Navy, for instance, examined a very large number of men working on aircraft carriers: the study was known as Project Anehin. It can be unpleasant to live even several miles from an aerodrome; if you think what it must be like to share the deck of a ship with several squadrons of jet aircraft, you will realize that a modern navy is a good place to study noise. But neither psychiatric interviews nor objective tests were able to show any effects upon these American sailors. This result merely confirms earlier American and British studies: if there is any effect of noise upon mental health, it must be so small that present methods of psychiatric diagnosis cannot find it. That does not prove that it does exist: but it does mean that noise is less dangerous than, say, being brought up in an orphanage - which really is mental health hazard.',12),(326,26,'The past life of the earth','It is animals and plants which lived in or near water whose remains are most likely to be preserved, for one of the necessary conditions of preservation is quick burial, and it is only in the seas and rivers, and sometimes lakes, where mud and silt have been continuously deposited, that bodies and the like can be rapidly covered over and preserved.\r\nBut even in the most favourable circumstances only a small fraction of the creatures that die are preserved in this way before decay sets in or, even more likely, before scavengers eat them. After all, all living creatures live by feeding on something else, whether it be plant or animal, dead or alive, and it is only by chance that such a fate is avoided. The remains of plants and animals that lived on land are much more rarely preserved, for there is seldom anything to cover them over. When you think of the innumerable birds that one sees flying about, not to mention the equally numerous small animals like field mice and voles which you do not see, it is very rarely that one comes across a dead body, except, of course, on the roads. They decompose and are quickly destroyed by the weather or eaten by some other creature.\r\nIt is almost always due to some very special circumstances that traces of land animals survive, as by falling into inaccessible caves, or into an ice crevasse, like the Siberian mammoths, when the whole animal is sometimes preserved, as in a refrigerator. This is what happened to the famous Beresovka mammoth which was found preserved and in good condition. In his mouth were the remains of fir trees - the last meal that he had before he fell into the crevasse and broke his back. The mammoth has now been restored in the Palaeontological Museum in St. Pertersburg. Other animals were trapped in tar pits, like the elephants, sabretoothed cats, and numerous other creatures that are found at Rancho la Brea, which is now just a suburb of Los Angeles. Apparently what happened was that water collected on these tar pits, and the bigger animals like the elephants ventured out on to the apparently firm surface to drink, and were promptly bogged in the tar. And then, when they were dead, the carnivores, like the sabre-toothed cats and the giant wolves, came out to feed and suffered exactly the same fate. There are also endless numbers of birds in the tar as well.',12),(327,27,'The \'Vasa\'','From the seventeenth-century empire of Sweden, the story of a galleon that sank at the start of her maiden voyage in 1628 must be one of the strangest tales of the sea. For nearly three and a half centuries she lay at the bottom of Stockholm harbour until her discovery in 1956. This was the Vasa, royal flagship of the great imperial fleet.\r\nKing Gustavus Adolphus, \'The Northern Hurricane\', then at the height of his military success in the Thirty Years\' War, had dictated her measurements and armament. Triple gun-decks mounted sixty-four bronze cannon. She was intended to play a leading role in the growing might of Sweden.\r\nAs she was prepared of her maiden voyage on August 10, 1628, Stockholm was in a ferment. From the Skeppsbron and surrounding islands the people watched this thing of beauty begin to spread her sails and catch the wind. They had laboured for three years to produce this floating work of art; she was more richly carved and ornamented than any previous ship. The high stern castle was a riot of carved gods, demons, knights, kings, warriors, mermaids, cherubs; and zoomorphic animal shapes ablaze with red and gold and blue, symbols of courage, power, and cruelty, were portrayed to stir the imaginations of the superstitious sailors of the day.\r\nThen the cannons of the anchored warships thundered a salute to which the Vasa fired in reply. As she emerged from her drifting cloud of gun smoke with the water churned to foam beneath her bow, her flags flying, penants waving, sails filling in the breeze, and the red and gold of her superstructure ablaze with colour, she presented a more majestic spectacle than Stockholmers had ever seen before. All gun-ports were open and the muzzles peeped wickedly from them.\r\nAs the wind freshened there came a sudden squall and the ship made a strange movement, listing to port. The Ordnance Officer ordered all the port cannon to be heaved to starboard to counteract the list, but the steepening angle of the decks increased. Then the sound of rumbling thunder reached the watchers on the shore, as cargo, ballast, ammunition and 400 people went sliding and crashing down to the port side of the steeply listing ship. The lower gun-ports were now below water and the inrush sealed the ship\'s fate. In that first glorious hour, the mighty Vasa, which was intended to rule the Baltic, sank with all flags flying - in the harbour of her birth.',12),(328,28,'Patients and doctors','This is a sceptical age, but although our faith in many of the things in which our forefathers fervently believed has weakened, our confidence in the curative properties of the bottle of medicine remains the same as theirs. This modern faith in medicines is proved by the fact that the annual drug bill of the Health Services is mounting to astronomical figures and shows no signs at present of ceasing to rise. The majority of the patients attending the medical out-patients departments of our hospitals feel that they have not received adequate treatment unless they are able to carry home with them some tangible remedy in the shape of a bottle of medicine, a box of pills, or a small jar of ointment, and the doctor in charge of the department is only too ready to provide them with these requirements. There is no quicker method of disposing of patients than by giving them what they are asking for, and since most medical men in the Health Services are overworked and have little time for offering time-consuming and little-appreciated advice on such subjects as diet, right living, and the need for abandoning bad habits etc., the bottle, the box, and the jar are almost always granted them.\r\nNor is it only the ignorant and ill-educated person who has such faith in the bottle of medicine. It is recounted of Thomas Carlyle that when he heard of the illness of his friend, Henry Taylor, he went off immediately to visit him, carrying with him in his pocket what remained of a bottle of medicine formerly prescribed for an indisposition of Mrs. Carlyle\'s. Carlyle was entirely ignorant of what the bottle in his pocket contained, of the nature of the illness from which his friend was suffering, and of what had previously been wrong with his wife, but a medicine that had worked so well in one form of illness would surely be of equal benefit in another, and comforted by the thought of the help he was bringing to his friend, he hastened to Henry Taylor\'s house. History does not relate whether his friend accepted his medical help, but in all probability he did. The great advantage of taking medicine is that it makes no demands on the taker beyond that of putting up for a moment with a disgusting taste, and that is what all patients demand of their doctors - to be cured at no inconvenience to themselves.',12),(329,29,'The hovercraft','Many strange new means of transport have been developed in our century, the strangest of them being perhaps the hovercraft. In 1953, a former electronics engineer in his fifties, Christopher Cockerell, who had turned to boat-building on the Norfolk Broads, suggested an idea on which he had been working for many years to the British Government and industrial circles. It was the idea of supporting a craft on a \'pad\', or cushion, of low-pressure air, ringed with a curtain of higher pressure air. Ever since, people have had difficulty in deciding whether the craft should be ranged among ships, planes, or land vehicles - for it is something in between a boat and an aircraft. As a shipbuilder, Cockerell was trying to find a solution to the problem of the wave resistance which wastes a good deal of a surface ship\'s power and limits its speed. His answer was to lift the vessel out of the water by making it ride on a cushion of air, no more than one or two feet thick. This is done by a great number of ring-shaped air jets on the bottom of the craft. It \'flies\', therefore, but it cannot fly higher - its action depends on the surface, water or ground, over which it rides.\r\nThe first tests on the Solent in 1959 caused a sensation. The hovercraft travelled first over the water, then mounted the beach, climbed up the dunes, and sat down on a road. Later it crossed the Channel, riding smoothly over the waves, which presented no problem.\r\nSince that time, various types of hovercraft have appeared and taken up regular service. The hovercraft is particularly useful in large areas with poor communications such as Africa or Australia; it can become a \'flying fruit-bowl\', carrying bananas from the plantations to the ports; giant hovercraft liners could span the Atlantic; and the railway of the future may well be the \'hovertrain\', riding on its air cushion over a single rail, which it never touches, at speeds up to 300 m.p.h. - the possibilities appear unlimited.',12),(330,30,'Exploring the sea-floor','Our knowledge of the oceans a hundred years ago was confined to the two-dimensional shape of the sea surface and the hazards of navigation presented by the irregularities in depth of the shallow water close to the land. The open sea was deep and mysterious, and anyone who gave more than a passing thought to the bottom confines of the oceans probably assumed that the sea bed was flat. Sir James Clark Ross had obtained a sounding of over 2,400 fathoms in 1839, but it was not until 1869, when H.M.S. Porcupine was put at the disposal of the Royal Society for several cruises, that a series of deep soundings was obtained in the Atlantic and the first samples were collected by dredging the bottom. Shortly after this the famous H. M. S. Challenger expedition established the study of the sea-floor as a subject worthy of the most qualified physicists and geologists. A burst of activity associated with the laying of submarine cables soon confirmed the challenger\'s observation that many parts of the ocean were two to three miles deep, and the existence of underwater features of considerable magnitude.\r\nToday, enough soundings are available to enable a relief map of the Atlantic to be drawn and we know something of the great variety of the sea bed\'s topography. Since the sea covers the greater part of the earth\'s surface, it is quite reasonable to regard the sea floor as the basic form of the crust of the earth, with, superimposed upon it, the continents, together with the islands and other features of the oceans. The continents form rugged tablelands which stand nearly three miles above the floor of the open ocean. From the shore line, out a distance which may be anywhere from a few miles to a few hundred miles, runs the gentle slope of the continental shelf, geologically part of the continents. The real dividing line between continents and oceans occurs at the foot of a steeper slope.\r\nThis continental slope usually starts at a place somewhere near the 100-fatheom mark and in the course of a few hundred miles reaches the true ocean floor at 2,500-3,500 fathoms. The slope averages about 1 in 30. but contains steep, probably vertical, cliffs, and gentle sediment-covered terraces, and near its lower reaches there is a long tailing-off which is almost certainly the result of material transported out to deep water after being eroded from the continental masses.',12),(331,31,'The sculptor speaks','Appreciation of sculpture depends upon the ability to respond to form in three dimensions. That is perhaps why sculpture has been described as the most difficult of all arts; certainly it is more difficult than the arts which involve appreciation of flat forms, shape in only two dimensions. Many more people are \'form-blind\' than colour-blind. The child learning to see, first distinguishes only two-dimensional shape; it cannot judge distances, depths. Later, for its personal safety and practical needs, it has to develop (partly by means of touch) the ability to judge roughly three-dimensonal distances. But having satisfied the requirements of practical necessity, most people go no further. Though they may attain considerable accuracy in the perception of flat form, they do not make the further intellectual and emotional effort needed to comprehend form in its full spatial existence.\r\nThis is what the sculptor must do. He must strive continually to think of, and use, form in its full spatial completeness. He gets the solid shape, as it were, inside his head-he thinks of it, whatever its size, as if he were holding it completely enclosed in the hollow of his hand. He mentally visualizes a complex form from all round itself; he knows while he looks at one side what the other side is like, he identifies himself with its centre of gravity, its mass, its weight; he realizes its volume, as the space that the shape displaces in the air.\r\nAnd the sensitive observer of sculpture must also learn to feel shape simply as shape, not as description or reminiscence. He must, for example, perceive an egg as a simple single solid shape, quite apart from its significance as food, or from the literary idea that it will become a bird. And so with solids such as a shell, a nut, a plum, a pear, a tadpole, a mushroom, a mountain peak, a kidney, a carrot, a tree-trunk, a bird, a bud, a lark, a ladybird, a bulrush, a bone. From these he can go on to appreciate more complex forms or combinations of several forms.',12),(332,32,'Galileo reborn','In his own lifetime Galileo was the centre of violent controversy; but the scientific dust has long since settled, and today we can see even his famous clash with the Inquisition in something like its proper perspective. But, in contrast, it is only in modern times that Galileo has become a problem child for historians of science. The old view of Galileo was delightfully uncomplicated. He was, above all, a man who experimented: who despised the prejudices and book learning of the Aristotelians, who put his questions to nature instead of to the ancients, and who drew his conclusions fearlessly. He had been the first to turn a telescope to the sky, and he had seen their evidence enough to overthrow Aristotle and Ptolemy together. He was the man who climbed the Leaning Tower of Pisa and dropped various weights from the top, who rolled balls down inclined planes, and then generalized the results of his many experiments into the famous law of free fall.\r\nBut a closer study of the evidence, supported by a deeper sense of the period, and particularly by a new consciousness of the philosophical undercurrents in the scientific revolution, has profoundly modified this view of Galileo. Today, although the old Galileo lives on in many popular writings, among historians of science a new and more sophisticated picture has emerged. At the same time our sympathy for Galileo\'s opponents has grown somewhat. His telescopic observations are justly immortal; they aroused great interest at the time, they had important theoretical consequences, and they provided a striking demonstration of the potentialities hidden in instruments and apparatus. But can we blame those who looked and failed to see what Galileo saw, if we remember that to use a telescope at the limit of its powers calls for long experience and intimate familiarity with one\'s instrument? Was the philosopher who refused to look through Galileo\'s telescope more culpable than those who alleged that the spiral nebulae observed with Lord Rosse\'s great telescope in the 1840s were scratches left by the grinder? We can perhaps forgive those who said the moons of Jupiter were produced by Galileo\'s spyglass if we recall that in his day, as for centuries before, curved glass was the popular contrivance for producing not truth but illusion, untruth; and if a single curved glass would distort nature, how much more would a pair of them?',12),(333,33,'Education','Education is one of the key words of our time. A man without an education, many of us believe, is an unfortunate victim of adverse circumstances, deprived of one of the greatest twentieth-century opportunities. Convinced of the importance of education, modern states \'invest\' in institutions of learning to get back \'interest\' in the form of a large group of enlightened young men and women who are potential leaders. Education, with its cycles of instruction so carefully worked out, punctuated by textbooks - those purchasable wells of wisdom - what would civilization be like without its benefits? So much is certain: that we would have doctors and preachers, lawyers and defendants, marriages and births - but our spiritual outlook would be different. We would lay less stress on \'facts and figures\' and more on a good memory, on applied psychology, and on the capacity of a man to get along with his fellow-citizens. If our educational system were fashioned after its bookless past we would have the most democratic form of \'college\' imaginable. Among tribal people all knowledge inherited by tradition is shared by all; it is taught to every member of the tribe so that in this respect everybody is equally equipped for life.\r\nIt is the ideal condition of the \'equal start\' which only our most progressive forms of modern education try to regain. In primitive cultures the obligation to seek and to receive the traditional instruction is binding to all. There are no \'illiterates\' - if the term can be applied to peoples without a script - while our own compulsory school attendance became law in Germany in 1642, in France in 1806, and in England in 1876, and is still non-existent in a number of \'civilized\' nations. This shows how long it was before we deemed it necessary to make sure that all our children could share in the knowledge accumulated by the \'happy few\' during the past centuries.\r\nEducation in the wilderness is not a matter of monetary means. All are entitled to an equal start. There is none of the hurry which, in our society, often hampers the full development of a growing personality. There, a child grows up under the ever-present attention of his parent; therefore the jungles and the savannahs know of no \'juvenile delinquency\'. No necessity of making a living away from home results in neglect of children, and no father is confronted with his inability to \'buy\' an education for his child.',13),(334,34,'Adolescence','Parents are often upset when their children praise the homes of their friends and regard it as a slur on their own cooking, or cleaning, or furniture, and often are foolish enough to let the adolescents see that they are annoyed. They may even accuse them of disloyalty, or make some spiteful remark about the friends\' parents. Such a loss of dignity and descent into childish behaviour on the part of the adults deeply shocks the adolescents, and make them resolve that in future they will not talk to their parents about the places or people they visit. Before very long the parents will be complaining that the child is so secretive and never tells them anything, but they seldom realize that they have brought this on themselves.\r\nDisillusionment with the parents, however good and adequate they may be both as parents and as individuals, is to some degree inevitable. Most children have such a high ideal of their parents, unless the parents themselves have been unsatisfactory, that it can hardly hope to stand up to a realistic evaluation. Parents would be greatly surprised and deeply touched if they realized how much belief their children usually have in their character and infallibility, and how much this faith means to a child. If parents were prepared for this adolescent reaction, and realized that it was a sign that the child was growing up and developing valuable powers of observation and independent judgment, they would not be so hurt, and therefore would not drive the child into opposition by resenting and resisting it.\r\nThe adolescent, with his passion for sincerity, always respects a parent who admits that he is wrong, or ignorant, or even that he has been unfair or unjust. What the child cannot forgive is the parent\'s refusal to admit these charges if the child knows them to be true.\r\nVictorian parents believed that they kept their dignity by retreating behind an unreasoning authoritarian attitude; in fact they did nothing of the kind, but children were then too cowed to let them know how they really felt. Today we tend to go to the other extreme, but on the whole this is a healthier attitude both for the child and the parent. It is always wiser and safer to face up to reality, however painful it may be at the moment.',13),(335,35,'Space odyssey','The Moon is likely to become the industrial hub of the Solar System, supplying the rocket fuels for its ships, easily obtainable from the lunar rocks in the form of liquid oxygen. The reason lies in its gravity. Because the Moon has only an eightieth of the Earth\'s mass, it requires 97 per cent less energy to travel the quarter of a million miles from the Moon to Earth-orbit than the 200 mile-journey from Earth\'s surface into orbit!\r\nThis may sound fantastic, but it is easily calculated. To escape from the Earth in a rocket, one must travel at seven miles per second. The comparable speed from the Moon is only 1.5 miles per second. Because the gravity on the Moon\'s surface is only a sixth of Earth\'s (remember how easily the Apollo astronauts bounded along), it takes much less energy to accelerate to that 1.5 miles per second than it does on Earth. Moon-dwellers will be able to fly in space at only three per cent of the cost of similar journeys by their terrestrial dwellers will be able to fly in space at only three per cent of the cost of similar journeys by their terrestrial cousins.\r\nArthur C. Clark once suggested a revolutionary idea passes through three phases:\r\n1 \'It\'s impossible - don\'t waste my time.\'\r\n2 \'It\'s possible, but not worth doing.\'\r\n3 \'I said it was a good idea all along.\'\r\nThe idea of colonising Mars - a world 160 times more distant time the Moon - will move decisively from the second phase to the third, when a significant number of people are living permanently in space. Mars has an extraordinary fascination for would-be voyagers. America, Russia and Europe are filled with enthusiasts - many of them serious and senior scientists - who dream of sending people to it. Their aim is understandable. It is the one world in the Solar System that is most like the Earth. It is a world of red sandy deserts (hence its name - the Red Planet), cloudless skies, savage sandstorms, chasms wider than the Grand Canyon and at least one mountain more than twice as tall as Everest. It seems ideal for settlement.',13),(336,36,'The cost of government','If a nation is essentially disunited, it is left to the government to hold it together. This increases the expense of government, and reduces correspondingly the amount of economic resources that could be used for developing the country. And it should not be forgotten how small those resources are in a poor and backward country. Where the cost of government is high, resources for development are correspondingly low.\r\nThis may be illustrated by comparing the position of a nation with that of a private business enterprise. An enterprise has to incur certain costs and expenses in order to stay in business. For our purposes, we are concerned only with one kind of cost - the cost of managing and administering the business. Such administrative overheads in a business are analogous to the cost of government in a nation. The administrative overheads of a business are low to the extent that everyone working in the business can be trusted to behave in a way that best promotes the interests of the firm. If they can each be trusted to take such responsibilities and to exercise such initiative as falls within their sphere, then administrative overheads will be low. It will be low because it will be necessary to have only one man looking after each job, without having another man to check upon what he is doing, keep him in line, and report on him to someone else. But if no one can be trusted to act in a loyal and responsible manner towards his job, then the business will require armies of administrators, checkers, and foremen and administrative overheads will rise correspondingly. As administrative overheads rise, so the earnings of the business after meeting the expense of administration, will fall; and the business will have less money to distribute as dividends or invest directly in its future progress and development.\r\nIt is precisely the same with a nation. To the extent that the people can be relied upon to behave in a loyal and responsible manner, the government does not require armies of police and civil servants to keep them in order. But if a nation is disunited, the government cannot be sure that the actions of the people will be in the interests of the nation; and it will have to watch, check, and control the people accordingly. A disunited nation therefore has to incur unduly high costs of government.',13),(337,37,'The process of ageing','At the age of twelve years, the human body is at its most vigorous. It has yet to reach its full size and strength, and its owner his or her full intelligence; but at this age the likelihood of death is least. Earlier, we were infants and young children, and consequently more vulnerable; later, we shall undergo a progressive loss of our vigour and resistance which, though imperceptible at first, will finally become so steep that we can live no longer, however well we look after ourselves, and however well society, and our doctors, look after us. This decline in vigour with the passing of time is called ageing. It is one of the most unpleasant discoveries which we all make that we must decline in this way, that if we escape wars, accidents and diseases we shall eventually \'die of old age\', and that this happens at a rate which differs little from person to person, so that there are heavy odds in favour of our dying between the ages of sixty-five and eighty. Some of us will die sooner, a few will live longer - on into a ninth or tenth decade. But the chances are against it, and there is a virtual limit on how long we can hope to remain alive, however lucky and robust we are.\r\nNormal people tend to forget this process unless and until they are reminded of it. We are so familiar with the fact that man ages, that people have for years assumed that the process of losing vigour with time, of becoming more likely to die the older we get, was something self-evident, like the cooling of a hot kettle or the wearing-out of a pair of shoes. They have also assumed that all animals, and probably other organisms such as trees, or even the universe itself, must in the nature of things \'wear out\'. Most animals we commonly observe do in fact age as we do, if given the chance to live long enough; and mechanical systems like a wound watch, or the sun, do in fact run out of energy in accordance with the second law of thermodynamics (whether the whole universe does so is a moot point at present). But these are not analogous to what happens when man ages. A run-down watch is still a watch and can be rewound. An old watch, by contrast, becomes so worn and unreliable that it eventually is not worth mending. But a watch could never repair itself - it does not consist of living parts, only of metal, which wears away by friction. We could, at one time, repair ourselves -well enough, at least, to overcome all but the most instantly fatal illnesses and accidents. Between twelve and eighty years we gradually lose this power; an illness which at twelve would knock us over, at eighty can knock us out, and into our grave. If we could stay as vigorous as we are at twelve, it would take about 700 years for half of us to die, and another 700 for the survivors to be reduced by half again.',13),(338,38,'Water and the traveller','Contamination of water supplies is usually due to poor sanitation close to water sources, sewage disposal into the sources themselves, leakage of sewage into distribution systems or contamination with industrial or farm waste. Even if a piped water supply is safe at its source, it is not always safe by the time it reaches the tap. Intermittent tap-water supplies should be regarded as particularly suspect.\r\nTravellers on short trips to areas with water supplies of uncertain quality should avoid drinking tap-water, or untreated water from any other source. It is best to keep to hot drinks, bottled or canned drinks of well-known brand names - international standards of water treatment are usually followed at bottling plants. Carbonated drinks are acidic, and slightly safer. Make sure that all bottles are opened in your presence, and that their rims are clean and dry.\r\nBoiling is always a good way of treating water. Some hotels supply boiled water on request and this can be used for drinking, or for brushing teeth. Portable boiling elements that can boil small quantities of water are useful when the right voltage of electricity is available. Refuse politely any cold drink from an unknown source.\r\nIce is only as safe as the water from which it is made, and should not be put in drinks unless it is known to be safe. Drinks can be cooled by placing them on ice rather than adding ice to them.\r\nAlcohol may be a medical disinfectant, but should not be relied upon to sterilize water. Ethanol is more effective at a concentration of 50-70 per cent; below 20 per cent, its bactericidal action is negligible. Spirits labelled 95 proof contain only about 47 per cent alcohol. Beware of methylated alcohol, which is very poisonous, and should never be added to drinking water.\r\nIf no other safe water supply can be obtained, tap water that is too hot to touch can be left to cool and is generally safe to drink. Those planning a trip to remote areas, or intending to live in countries where drinking water is not readily available, should know about the various possible methods for making water safe.',13),(339,39,'What every writer wants','I have known very few writers, but those I have known, and whom I respect, confess at once that they have little idea where they are going when they first set pen to paper. They have a character, perhaps two; they are in that condition of eager discomfort which passes for inspiration; all admit radical changes of destination once the journey has begun; one, to my certain knowledge, spent nine months on a novel about Kashmir, then reset the whole thing in the Scottish Highlands. I never heard of anyone making a \'skeleton\', as we were taught at school. In the breaking and remaking, in the timing, interweaving, beginning afresh, the writer comes to discern things in his material which were not consciously in his mind when he began. This organic process, often leading to moments of extraordinary self-discovery, is of an indescribable fascination. A blurred image appears; he adds a brushstroke and another, and it is gone; but something was there, and he will not rest till he has captured it. Sometimes the yeast within a writer outlives a book he has written. I have heard of writers who read nothing but their own books; like adolescents they stand before the mirror, and still cannot fathom the exact outline of the vision before them. For the same reason, writers talk interminably about their own books, winkling out hidden meanings, super-imposing new ones, begging response from those around them. Of course a writer doing this is misunderstood: he might as well try to explain a crime or a love affair. He is also, incidentally, an unforgivable bore.\r\nThis temptation to cover the distance between himself and the reader, to study his image in the sight of those who do not know him, can be his undoing: he has begun to write to please.\r\nA young English writer made the pertinent observation a year or two back that the talent goes into the first draft, and the art into the drafts that follow. For this reason also the writer, like any other artist, has no resting place, no crowd or movement in which he may take comfort, no judgment from outside which can replace the judgment from within. A writer makes order out of the anarchy of his heart; he submits himself to a more ruthless discipline than any critic dreamed of, and when he flirts with fame, he is taking time off from living with himself, from the search for what his world contains at its inmost point.',13),(340,40,'Waves','Waves are the children of the struggle between ocean and atmosphere, the ongoing signatures of infinity. Rays from the sun excite and energize the atmosphere of the earth, awakening it to flow, to movement, to rhythm, to life. The wind then speaks the message of the sun to the sea and the sea transmits it on through waves - an ancient, exquisite, powerful message.\r\nThese ocean waves are among the earth\'s most complicated natural phenomena. The basic features include a crest (the highest point of the wave), a trough (the lowest point), a height (the vertical distance from the trough to the crest), a wave length (the horizontal distance between two wave crests), and a period (which is the time it takes a wave crest to travel one wave length).\r\nAlthough an ocean wave gives the impression of a wall of water moving in your direction, in actuality waves move through the water leaving the water about where it was. If the water was moving with the wave, the ocean and everything on it would be racing in to the shore with obviously catastrophic results.\r\nAn ocean wave passing through deep water causes a particle on the surface to move in a roughly circular orbit, drawing the particle first towards the advancing wave, then up into the wave, then forward with it and then - as the wave leaves the particles behind - back to its starting point again.\r\nFrom both maturity to death, a wave is subject to the same laws as any other \'living\' thing. For a time it assumes a miraculous individuality that, in the end, is reabsorbed into the great ocean of life.\r\nThe undulating waves of the open sea are generated by three natural causes: wind, earth movements or tremors, and the gravitational pull of the moon and the sun. Once waves have been generated, gravity is the force that drives them in a continual attempt to restore the ocean surface to a flat plain.',13),(341,41,'Training elephants','Two main techniques have been used for training elephants, which we may call respectively the tough and the gentle. The former method simply consists of setting an elephant to work and beating him until he does what is expected of him. Apart from any moral considerations this is a stupid method of training, for it produces a resentful animal who at a later stage may well turn man-killer. The gentle method requires more patience in the early stages, but produces a cheerful, good-tempered elephant who will give many years of loyal service.\r\nThe first essential in elephant training is to assign to the animal a single mahout who will be entirely responsible for the job. Elephants like to have one master just as dogs do, and are capable of a considerable degree of personal affection. There are even stories of half-trained elephant calves who have refused to feed and pined to death when by some unavoidable circumstance they have been deprived of their own trainer. Such extreme cases must probably be taken with a grain of salt, but they do underline the general principle that the relationship between elephant and mahout is the key to successful training.\r\nThe most economical age to capture an elephant for training is between fifteen and twenty years, for it is then almost ready to undertake heavy work and can begin to earn its keep straight away. But animals of this age do not easily become subservient to man, and a very firm hand must be employed in the early stages. The captive elephant, still roped to a tree, plunges and screams every time a man approaches, and for several days will probably refuse all food through anger and fear. Sometimes a tame elephant is tethered nearby to give the wild one confidence, and in most cases the captive gradually quietens down and begins to accept its food. The next stage is to get the elephant to the training establishment, a ticklish business which is achieved with the aid of two tame elephants roped to the captive on either side.\r\nWhen several elephants are being trained at one time, it is customary for the new arrival to be placed between the stalls of two captives whose training is already well advanced. It is then left completely undisturbed with plenty of food and water so that it can absorb the atmosphere of its new home and see that nothing particularly alarming is happening to its companions. When it is eating normally, its own training begins. The trainer stands in front of the elephant holding a long stick with a sharp metal point. Two assistants, mounted on tame elephants, control the captive from either side, while others rub their hands over his skin to the accompaniment of a monotonous and soothing chant. This is supposed to induce pleasurable sensations in the elephant, and its effects are reinforced by the use of endearing epithets. such as \'ho! my son\', or \'ho! my father\', or \'my mother\', according to the age and sex of the captive. The elephant is not immediately susceptible to such blandishments, however, and usually lashes fiercely with its trunk in all directions. These movements are controlled by the trainer with the metal-pointed stick, and the trunk eventually becomes so sore that the elephant curls it up and seldom afterwards uses it for offensive purposes.',14),(342,42,'Recording an earthquake','An earthquake comes like a thief in the night, without warning. It was necessary, therefore, to invent instruments that neither slumbered nor slept. Some devices were quite simple. One, for instance, consisted of rods of various lengths and thicknesses which would stand up on end like ninepins. When a shock came, it shook the rigid table upon which these stood. If it were gentle, only the more unstable rods fell. If it were severe, they all fell. Thus the rods, by falling, and by the direction in which they fell, recorded for the slumbering scientist the strength of a shock that was too weak to waken him, and the direction from which it came.\r\nBut instruments far more delicate than that were needed if any really serious advance was to be made. The ideal to be aimed at was to devise an instrument that could record with a pen on paper, the movements of the ground or of the table as the quake passed by. While I write my pen moves, but the paper keeps still. With practice, no doubt, I could in time learn to write by holding the pen still while the paper moved. That sounds a silly suggestion, but that was precisely the idea adopted in some of the early instruments (seismometers) for recording earthquake waves. But when table, penholder and paper are all moving, how is it possible to write legibly? The key to a solution of that problem lay in an everyday observation. Why does a person standing in a bus or train tend to fall when a sudden start is made? It is because his feet move on, but his head stays still. A simple experiment will help us a little further. Tie a heavy weight at the end of a long piece of string. With the hand held high in the air, hold the string so that the weight nearly touches the ground. Now move the hand to and fro and around but not up and down. It will be found that the weight moves but slightly or not at all. Imagine a pen attached to the weight in such a way that its point rests upon a piece of paper on the floor. Imagine an earthquake shock shaking the floor, the paper, you and your hand. In the midst of all this movement, the weight and the pen would be still. But as the paper moved from side to side under the pen point, its movement would be recorded in ink upon its surface. It was upon this principle that the first instruments were made, but the paper was wrapped round a drum which rotated slowly. As long as all was still, the pen drew a straight line, but while the drum was being shaken, the line that the pen was drawing wriggled from side to side. The apparatus thus described, however, records only the horizontal component of the wave movement, which is, in fact, much more complicated. If we could actually see the path described by a particle, such as a sand grain in the rock, it would be more like that of a bluebottle buzzing round the room; it would be up and down, to and fro and from side to side. Instruments have been devised and can be so placed that all three elements can be recorded in different graphs.\r\nWhen the instrument is situated at more than 700 miles from the earthquake centre, the graphic record shows three waves arriving one after the other at short intervals. The first records the arrival of longitudinal vibrations. The second marks the arrival of transverse vibrations which travel more slowly and arrive several minutes after the first. These two have travelled through the earth. It was from the study of these that so much was learnt about the interior of the earth. The third, or main wave, is the slowest and has travelled round the earth through the surface rocks.',14),(343,43,'Are there strangers in space?','We must conclude from the work of those who have studied the origin of life, that given a planet only approximately like our own, life is almost certain to start. Of all the planets in our own solar system, we ware now pretty certain the Earth is the only one on which life can survive. Mars is too dry and poor in oxygen, Venus far too hot, and so is Mercury, and the outer planets have temperatures near absolute zero and hydrogen-dominated atmospheres. But other suns, stars as the astronomers call them, are bound to have planets like our own, and as is the number of stars in the universe is so vast, this possibility becomes virtual certainty. There are one hundred thousand million stars in our own Milky Way alone, and then there are three thousand million other Milky Ways, or galaxies, in the universe. So the number of stars that we know exist is now estimated at about 300 million million million.\r\nAlthough perhaps only 1 per cent of the life that has started somewhere will develop into highly complex and intelligent patterns, so vast is the number of planets, that intelligent life is bound to be a natural part of the universe.\r\nIf then we are so certain that other intelligent life exists in the universe, why have we had no visitors from outer space yet? First of all, they may have come to this planet of ours thousands or millions of years ago, and found our then prevailing primitive state completely uninteresting to their own advanced knowledge. Professor Ronald Bracewell, a leading American radio astronomer, argued in Nature that such a superior civilization, on a visit to our own solar system, may have left an automatic messenger behind to await the possible awakening of an advanced civilization. Such a messenger, receiving our radio and television signals, might well re-transmit them back to its home-planet, although what impression any other civilization would thus get from us is best left unsaid.\r\nBut here we come up against the most difficult of all obstacles to contact with people on other planets - the astronomical distances which separate us. As a reasonable guess, they might, on an average, be 100 light years away. (A light year is the distance which light travels at 186,000 miles per second in one year, namely 6 million million miles.) Radio waves also travel at the speed of light, and assuming such an automatic messenger picked up our first broadcasts of the 1920\'s, the message to its home planet is barely halfway there. Similarly, our own present primitive chemical rockets, though good enough to orbit men, have no chance of transporting us to the nearest other star, four light years away, let alone distances of tens or hundreds of light years.\r\nFortunately, there is a \'uniquely rational way\' for us to communicate with other intelligent beings, as Walter Sullivan has put it in his excellent book, We Are not Alone. This depends on the precise radio frequency of the 21-cm wavelength, or 1420 megacycles per second. It is the natural frequency of emission of the hydrogen atoms in space and was discovered by us in 1951; it must be known to any kind of radio astronomer in the universe.\r\nOnce the existence of this wave-length had been discovered, it was not long before its use as the uniquely recognizable broadcasting frequency for interstellar communication was suggested. Without something of this kind, searching for intelligences on other planets would be like trying to meet a friend in London without a pre-arranged rendezvous and absurdly wandering the streets in the hope of a chance encounter.',14),(344,44,'Patterns of culture','Custom has not commonly been regarded as a subject of any great moment. The inner workings of our own brains we feel to be uniquely worthy of investigation, but custom, we have a way of thinking, is behaviour at its most commonplace. As a matter of fact, it is the other way around. Traditional custom, taken the world over, is a mass of detailed behaviour more astonishing than what any one person can ever evolve in individual actions, no matter how aberrant. Yet that is a rather trivial aspect of the matter. The fact of first-rate importance is the predominant role that custom plays in experience and in belief, and the very great varieties it may manifest.\r\nNo man ever looks at the world with pristine eyes. He sees it edited by a definite set of customs and institutions and ways of thinking. Even in his philosophical probings he cannot go behind these stereotypes; his very concepts of the true and the false will still have reference to his particular traditional customs. John Dewey has said in all seriousness that the part played by custom in shaping the behaviour of the individual, as against any way in which he can affect traditional custom, is as the proportion of the total vocabulary of his mother tongue against those words of his own baby talk that are taken up into the vernacular of his family. When one seriously studies the social orders that have had the opportunity to develop autonomously, the figure becomes no more than an exact and matter-of-fact observation. The life history of the individual is first and foremost an accommodation to the patterns and standards traditionally handed down in his community. From the moment of his birth, the customs into which he is born shape his experience and behaviour. By the time he can talk, he is the little creature of his culture, and by the time he is grown and able to take part in its activities, its habits are his habits, its beliefs his beliefs, its impossibilities his impossibilities. Every child that is born into his group will share them with him, and no child born into one on the opposite side of the globe can ever achieve the thousandth part. There is no social problem it is more incumbent upon us to understand than this of the role of custom. Until we are intelligent as to its laws and varieties, the main complicating facts of human life must remain unintelligible.\r\nThe study of custom can be profitable only after certain preliminary propositions have been accepted, and some of these propositions have been violently opposed. In the first place, any scientific study requires that there be no preferential weighting of one or another of the items in the series it selects for its consideration. In all the less controversial fields, like the study of cacti or termites or the mature of nebulae, the necessary method of study is to group the relevant material and to take note of all possible variant forms and conditions. In this way, we have learned all that we know of the laws of astronomy, or of the habits of the social insects, let us say. It is only in the study of man himself that the major social sciences have substituted the study of one local variation, that of Western civilization.\r\nAnthropology was by definition impossible, as long as these distinctions between ourselves and the primitive, ourselves and the barbarian, ourselves and the pagan, held sway over people\'s minds. It was necessary first to arrive at that degree of sophistication where we no longer set our own belief against our neighbour\'s superstition. It was necessary to recognize that these institutions which are based on the same premises, let us say the supernatural, must be considered together, our own among the rest.',14),(345,45,'Of men and galaxies','In man\'s early days, competition with other creatures must have been critical. But this phase of our development is now finished. Indeed, we lack practice and experience nowadays in dealing with primitive conditions. I am sure that, without modern weapons, I would make a very poor show of disputing the ownership of a cave with a bear, and in this I do not think that I stand alone. The last creature to compete with man was the mosquito. But even the mosquito has been subdued by attention to drainage and by chemical sprays.\r\nCompetition between ourselves, person against person, community against community, still persists, however; and it is as fierce as it ever was.\r\nBut the competition of man against man is not the simple process envisioned in biology. It is not a simple competition for a fixed amount of food determined by the physical environment, because the environment that determines our evolution is no longer essentially physical. Our environment is chiefly conditioned by the things we believe. Morocco and California are bits of the Earth in very similar latitudes, both on the west coasts of continents with similar climates, and probably with rather similar natural resources. Yet their present development is wholly different, not so much because of different people even, but because of the different thoughts that exist in the minds of their inhabitants. This is the point I wish to emphasize. The most important factor in our environment is the state of our own minds.\r\nIt is well known that where the white man has invaded a primitive culture, the most destructive effects have come not from physical weapons but from ideas. Ideas are dangerous. The Holy Office knew this full well when it caused heretics to be burned in days gone by. Indeed, the concept of free speech only exists in our modern society because when you are inside a community, you are conditioned by the conventions of the community to such a degree that it is very difficult to conceive of anything really destructive. It is only someone looking on from outside that can inject the dangerous thoughts. I do not doubt that it would be possible to inject ideas into the modern world that would utterly destroy us. I would like to give you an example, but fortunately I cannot do so. Perhaps it will suffice to mention the nuclear bomb. Imagine the effect on a reasonably advanced technological society, one that still does not possess the bomb, of making it aware of the possibility, of supplying sufficient details to enable the thing to be constructed. Twenty or thirty pages of information handed to any of the major world powers around the year 1925 would have been sufficient to change the course of world history. It is a strange thought, but I believe a correct one, that twenty or thirty pages of ideas and information would be capable of turning the present-day world upside down, or even destroying it. I have often tried to conceive of what those pages might contain, but of course I cannot do so because I am a prisoner of the present-day world, just as all of you are. We cannot think outside the particular patterns that our brains are conditioned to, or, to be more accurate, we can think only a very little way outside, and then only if we are very original.',14),(346,46,'Hobbies','A gifted American psychologist has said, \'Worry is a spasm of the emotion; the mind catches hold of something and will not let it go.\' It is useless to argue with the mind in this condition. The stronger the will, the more futile the task. One can only gently insinuate something else into its convulsive grasp. And if this something else is rightly chosen, if it is really attended by the illumination of another field of interest, gradually, and often quite swiftly, the old undue grip relaxes and the process of recuperation and repair begins.\r\nThe cultivation of a hobby and new forms of interest is therefore a policy of the first importance to a public man. But this is not a business that can be undertaken in a day or swiftly improvised by a mere command of the will. The growth of alternative mental interests is a long process. The seeds must be carefully chosen; they must fall on good ground; they must be sedulously tended, if the vivifying fruits are to be at hand when needed.\r\nTo be really happy and really safe, one ought to have at least two or three hobbies, and they must all be real. It is no use starting late in life to say: \'I will take an interest in this or that.\' Such an attempt only aggravates the strain of mental effort. A man may acquire great knowledge of topics unconnected with his daily work, and yet get hardly any benefit or relief. It is no use doing what you like; you have got to like what you do. Broadly speaking, human beings may be divided into three classes: those who are toiled to death, those who are worried to death, and those who are bored to death. It is no use offering the manual labourer, tired out with a hard week\'s sweat and effort, the chance of playing a game of football or baseball on Saturday afternoon. It is no use inviting the politician or the professional or business man, who has been working or worrying about serious things for six days, to work or worry about trifling things at the weekend.\r\nAs for the unfortunate people who can command everything they want, who can gratify every caprice and lay their hands on almost every object of desire - for them a new pleasure, a new excitement is only an additional satiation. In vain they rush frantically round from place to place, trying to escape from avenging boredom by mere clatter and motion. For them discipline in one form or another is the most hopeful path.\r\nIt may also be said that rational, industrious, useful human beings are divided into two classes: first, those whose work is work and whose pleasure is pleasure; and secondly those whose work and pleasure are one. Of these the former are the majority. They have their compensations. The long hours in the office or the factory bring with them as their reward, not only the means of sustenance, but a keen appetite for pleasure even in its simplest and most modest forms. But Fortune\'s favoured children belong to the second class. Their life is a natural harmony. For them the working hours are never long enough. Each day is a holiday, and ordinary holidays, when they come, are grudged as enforced interruptions in an absorbing vocation. Yet to both classes, the need of an alternative outlook, of a change of atmosphere, of a diversion of effort, is essential. Indeed, it may well be that those whose work is their pleasure are those who most need the means of banishing it at intervals from their minds.',14),(347,47,'The great escape','Economy is one powerful motive for camping, since after the initial outlay upon equipment, or through hiring it, the total expense can be far less than the cost of hotels. But, contrary to a popular assumption, it is far from being the only one, or even the greatest. The man who manoeuvres carelessly into his 20 pounds\' worth of space at one of Europe\'s myriad permanent sites may find himself bumping a Bentley. More likely, Ford Escort will be hub to hub with Renault or Mercedes, but rarely with bicycles made for two.\r\nThat the equipment of modern camping becomes yearly more sophisticated is an entertaining paradox for the cynic, a brighter promise for the hopeful traveler who has sworn to get away from it all. It also provides and some student sociologist might care to base his thesis upon the phenomenon - an escape of another kind. The modern traveller is often a man who dislikes the Splendide and the Bellavista, not because he cannot afford, or shuns their material comforts. but because he is afraid of them. Affluent he may be, but he is by no means sure what to tip the doorman or the chambermaid. Master in his own house, he has little idea of when to say boo to a maitre d\'hotel.\r\nFrom all such fears camping releases him. Granted, a snobbery of camping itself, based upon equipment and techniques, already exists; but it is of a kind that, if he meets it, he can readily understand and deal with. There is no superior \'they\' in the shape of managements and hotel hierarchies to darken his holiday days.\r\nTo such motives, yet another must be added. The contemporary phenomenon of car worship is to be explained not least by the sense of independence and freedom that ownership entails. To this pleasure camping gives an exquisite refinement.\r\nFrom one\'s own front door to home or foreign hills or sands and back again, everything is to hand. Not only are the means of arriving at the holiday paradise entirely within one\'s own command and keeping, but the means of escape from holiday hell (if the beach proves too crowded, the local weather too inclement) are there, outside - or, as likely, part of - the tent.\r\nIdealists have objected to the practice of camping, as to the package tour, that the traveller abroad thereby denies himself the opportunity of getting to know the people of the country visited. Insularity and self-containment, it is argued, go hand in hand. The opinion does not survive experience of a popular Continental camping place. Holiday hotels tend to cater for one nationality of visitors especially, sometimes exclusively. Camping sites, by contrast, are highly cosmopolitan. Granted, a preponderance of Germans is a characteristic that seems common to most Mediterranean sites; but as yet there is no overwhelmingly specialized patronage. Notices forbidding the open-air drying of clothes, or the use of water points for car washing, or those inviting \'our camping friends\' to a dance or a boat trip are printed not only in French or Italian or Spanish, but also in English, German and Dutch. At meal times the odour of sauerkraut vies with that of garlic. The Frenchman\'s breakfast coffee competes with the Englishman\'s bacon and eggs.\r\nWhether the remarkable growth of organized camping means the eventual death of the more independent kind is hard to say. Municipalities naturally want to secure the campers\' site fees and other custom. Police are wary of itinerants who cannot be traced to a recognized camp boundary or to four walls. But most probably it will all depend upon campers themselves: how many heath fires they cause; how much litter they leave; in short, whether or not they wholly alienate landowners and those who live in the countryside. Only good scouting is likely to preserve the freedoms so dear to the heart of the eternal Boy Scout.',14),(348,48,'Planning a share portfolio','There is no shortage of tipsters around offering \'get-rich-quick\' opportunities. But if you are a serious private investor, leave the Las Vegas mentality to those with money to fritter. The serious investor needs a proper \'portfolio\' - a well-planned selection of investments, with a definite structure and a clear aim. But exactly how does a newcomer to the stock market go about achieving that?\r\nWell, if you go to five reputable stock brokers and ask them what you should do with your money, you\'re likely to get five different answers, - even if you give all the relevant information about your age, family, finances and what you want from your investments. Moral? There is no one \'right\' way to structure a portfolio. However, there are undoubtedly some wrong ways, and you can be sure that none of our five advisers would have suggested sinking all (or perhaps any) of your money into Periwigs.\r\nSo what should you do? We\'ll assume that you have sorted out the basics - like mortgages, pensions, insurance and access to sufficient cash reserves. You should then establish your own individual aims. These are partly a matter of personal circumstances, partly a matter of psychology.\r\nFor instance, if you are older you have less time to recover from any major losses, and you may well wish to boost your pension income. So preserving your capital and generating extra income are your main priorities. In this case, you\'d probably construct a portfolio with some shares (but not high risk ones), along with gilts, cash deposits, and perhaps convertibles or the income shares of split capital investment trusts.\r\nIf you are younger, and in a solid financial position, you may decide to take an aggressive approach - but only if you\'re blessed with a sanguine disposition and won\'t suffer sleepless nights over share prices. If you recognize yourself in this description, you might include a couple of heady growth stocks in your portfolio, alongside your more pedestrian investments. Once you have decided on your investment aims, you can then decide where to put your money. The golden rule here is spread your risk - if you put all of your money into Periwigs International, you\'re setting yourself up as a hostage to fortune.',14),(349,1,'A Difficult Question','Four girls went to school every day by taxi.\r\nOne day one of the girls said, \"There\'s a test this morning. Let\'s get to school late. Then we don\'t have to take the test.\"\r\n\"What can we tell the teacher?\" one of the girls said. \"He\'ll be angry. We\'ll need a good excute.\"\r\nThe girls thought for several moments, then on of them said, \"Let\'s tell him that our taxi had a flat tire.\"\r\n\"That\'s a good ideal,\" the other girls said. \"We\'ll tell him that.\" They arrived at school an hour later. The test was finished.\r\n\"Why are you late?\" the teacher asked. \"You missed the test.\"\r\n\"Our taxi had a flat tire,\" one of the girls said.\r\nThe teacher thought for a moment, then he said, \"Sit down, one of you in each corner of the room.\"\r\nThe four girls did this.\r\nThen the teacher said, \"Write one a piece of paper the answer to this question: Which tire was flat?\"',15),(350,2,'The Hole in the Ground','There was once a farmer who lived near a road.\r\nIt was not a busy gate, there was a large hole in the road.\r\nThis hole was always full of water, and the drivers of the cars could not see how deep the hole was. They thought it was probably shallow.\r\nThen when they drove into the hole, they could not drive out because it was so deep.\r\nThe farmer did not spend much time working on his farm. He spent most of it watching the hole.\r\nWhen a car drove into it, he pulled the car out with his tractor and charged the driver a lot of money for doing this.\r\nOne day, the driver of a car said to him, \"You must make a lot of money pulling cars out of this hole night and day.\"\r\n\"Oh, no,\" the farmer said. \"I don\'t pull cars out of the hole at night. At night I fill the hole with water.\"',15),(351,3,'Quick Thinking','One day, Tony met his friend, Alan, in the street. Tony was quite rich, but Alan was poor. The two boys walked along the street together.\r\nThey talked about many things. Tony liked to listen to music and he told Alan about some new songs. Alan liked reading, and he told Tony about some new books.\r\nThey had the same friends, and they talked about these, too.\r\nThen Tony remembered something. \"I lent you ten dollars last week,\" he said. \"Can you give it back to me?\"\r\n\"I\'m very sorry, Tony,\" Alan said. \"I forgot about it.\"\r\nHe thought about this money for a minute. Then he said, \"I haven\'t got any money with me today. I\'ll pay you back tomorrow.\"\r\n\"All right,\" Tony said, \"I can wait another day.\"\r\nAt that moment a man ran up. He had a knife in his hand. Alan and Tony were afraid. He was a dangerous man.\r\n\"Give me your money,\" he said to Tony.\r\nTony took out his wallet and gave it to the thief.\r\nThe thief took out the money and threw the wallet on to the ground.\r\n\"Now you give me your money,\" he said to Alan.\r\nAlan thought quickly. He took out his wallet, but he did not give it to the thief. He gave it to Tony and said, \"I owe you some money, Tony. Here it is.\"',15),(352,4,'The New Doctor','An old man visited a new docker. He was very young.\r\n\"I don\'t feel well, doctor,\" he said. \"Please find out what\'s wrong with me.\"\r\n\"Take off your clothes and lie on the bed,\" the young doctor said, \"I\'ll examine you.\"\r\nThe old man took off his clothes and lay down on the bed, and the young doctor examined him. However, he couldn\'t find anything wrong with the old man.\r\nHe listened to his heart. He looked into his throat. He examined every part of him.\r\nAt last he said, \"I\'m sorry, but I can\'t find anything wrong with you. You\'re as healthy as I am.\"\r\n\"That\'s very strange,\" the old man said, \"because I feel really bad.\"\r\n\"Come back tomorrow and see me again if you don\'t feel better,\" the young doctor said. \"I\'ll examine you again.\"\r\n\"All right doctor,\" the old man said.\r\nSlowly, he stood up and put on his clothes. Then he walked out of the hospital.\r\nA few seconds later, the doctor\'s nurse ran in.\r\n\"Doctor! Doctor!\' she cried. \"That man you said was healthy has just died outside the door.\"\r\nThe doctor thought quickly.\r\n\"Then turn the body around so that people will think he was coming in,\" he said.',15),(353,5,'A Cheap Meal','A man went into a restaurant and sat down at on of the tables.\r\nA waiter went up to him and gave him the menu.\r\nThe man read it carefully, then ordered all the most expensive dishes.\r\nThe waiter served the meal and the man ate it with great enjoyment.\r\nThen a small boy came into the restaurant and sat at the man\'s table.\r\nThe waiter came up and said to the man, \"What would your little boy like, sir?\"\r\n\"Oh, just an ice cream,\" the man told him. Then he stood up and said to the waiter, \"I\'m going out to buy a newspaper.\"\r\nHe left the restaurant. The waiter gave the boy an ice cream. The boy ate it, and then stood up and walked to the door.\r\nThe waiter ran towards him.\r\n\"Excute me,\" he said, \"but your father hasn\'t come back and he hasn\'t paid for his meal or for your ice cream.\"\r\n\"I\'m sorry,\" the young boy said, \"That has nothing to do with me.\"\r\n\"Oh, yes it does,\" the waiter said, \"You will stay here until your father comes back and pays his bill.\"\r\n\"He\'s not my father,\" the boy said. \"I don\'t know who he is.\"\r\nThe waiter did not understand. \"What do you mean?\" he asked.\r\n\"The man can up to me in the street,\" the boy said. \"He asked me if like ice cream. I told him I did. Then he told me to come into the restaurant at 2 o\'clock and sit down at his table. He said he\'d give me some.\"',15),(354,6,'Not a Small Problem','Mr. Guppy was a very large man. He had a loud voice and a bad temper. He was not a giant, but he was much bigger than most men.\r\nLife was not easy for Mr. Guppy. He could seldom find clothes big enough. His feet were too large for most shoes.\r\nIn buses, trains and planes, he could not stand up straight. The roofs were too low.\r\nIn cars he could not move his legs. There was not enough room. At home, his bed was too short. Chairs were always too small.\r\nIn fact, whenever he went and whatever he did, Mr. guppy had problems because of his size.\r\nThese problems were so bad that Mr. Guppy stayed at home most of the time. Life was easier at home.\r\nThen one day, a friend said, \"You spend too much time at home. You should go out more. There\'s a good movie at the theater.\"\r\n\"I can\'t sit in theater seats,\" Mr. Guppy said. \"I\'m too big.\"\r\n\"That is no problem,\" his friend said. \"I\'ll buy you two tickets. You can get them at the theater when you go.\"\r\nThe friend sent money to the theater for two tickets. When the day came, Mr. Guppy put on his best clothes and went to the theater.\r\n\"You have two tickets for me,\" he said to the woman in the ticket office. \"My name is Guppy.\"\r\n\"Oh, yes, Mr. Guppy,\" the woman said. \"Here you are, seats G4 and P12. I\'m sorry, you and your friend can\'t sit together because we a very full this evening.\"\r\nPoor Mr. Guppy. He smiled sadly, walked of the theater and went home.',15),(355,7,'The Package','One morning a mailman walked up to a house. He rang the bell.\r\nA few seconds later a window of the house opened, and a woman put her head out.\r\n\"What is it?\" she wanted to know.\r\n\"I\'ve got a package for Mrs. Smith,\" the mailman said.\r\n\"Is it registered?\" the woman asked.\r\n\"Yes,\" the mailman said.\r\n\"Is it a big package or a small package?\" the woman wanted to know next.\r\n\"It\'s quite a big package,\" the mailman told her.\r\n\"I see.\"\r\nThe woman thought for a minute, then she said, \"Who is it from?\"\r\nThe mailman looked at the return address on the back of the package.\r\n\"It\'s from Jones and Jones in London,\" he said.\r\nNow the woman was very interested. \"From Jones and Jones, eh?\" she said. \"That\'s a very expensive shop. What\'s in the package?\"\r\n\"Madam,\" the mailman said, becoming quite angry with the woman, \"I don\'t know. Why don\'t you come down and take the package from me. Then you can open it and find out.\"\r\n\"Oh, I can\'t do that,\" the woman said.\r\n\"Why not?\" the mailman said.\r\n\"Because I\'m not Mrs. Smith,\" she said. \"You\'ve come to the wrong house. Mrs. Smith lives next door.\"',15),(356,8,'A Sad Story','Jim met two friends in the street.\r\n\"Come back to my apartment for a meal,\" he said. \"You can see the whole of the city from my bedroom window\"\r\nHis two friends agreed and they went back with Jim to the apartment building where he lived on the 40th floor.\r\nWhen they arrived, how ever, the elevator was out of order.\r\n\"I\'m sorry,\" Jim said, \"we\'ll have to walk.\"\r\n\"But it\'s forty floors!\" they said.\r\n\"We\'ll talk as we climb,\" Jim said. \"You can tell me the new jokes you\'ve heard and when we get to my apartment I\'ll tell you a story.\"\r\nHis friends agreed and they started to climb the forty flights of stairs. At last they reached the top floor and were standing outside the door of Jim\'s apartment.\r\n\"Now tell us a good story,\" his friends said.\r\nJim looked at them sadly and said, \"Once upon a time there was a man wo met two friends. He invited them to his apartment on the fortieth floor. The elevator wasn\'t working and they had to climb forty flights of stairs. When they reached the fortieth floor he put his hand in his pocket for the key to the door of his apartment. It wasn\'t there. Then he remembered where it was. It was in his car.\"',15),(357,9,'The Best Salesman in the World','Harry saw an ad in the window. It said: \"Wanted. The Best Salesman in the World. Top Pay.\"\r\n\"I\'m a great salesman,\" Harry told himself. \"I can sell anything. I\'ll go in and ask for that job.\"\r\nHe went into the building and spoke to the manager.\r\n\"I\'m the best salesman in the world,\" he said. \"Give me the job.\"\r\n\"You must prove you\'re the best,\" the manager said.\r\n\"I\'ll pass every test you give me.\" Harry told him.\r\n\"Good.\"\r\nThe manager took a box of candy out of his desk.\r\n\"Last week, I bought a thousand boxes of this candy. If you can sell them all before the end of the week, you can have the job.\"\r\n\"That\'s easy,\" Harry said.\r\nHe took the box of candy and left the office.\r\nEvery day and all day, he wenti from shop to shop, trying to sell boxes of the candy.\r\nHe couldn\'t sell one.\r\nThe candy was so bad he couldn\' even give it away.\r\nAt the end of the week he went back to the manager.\r\n\"I\'m sorry, sir,\" he said. \"I was wrong about myself. I\'m not the best salesman in the world, but I know who is.\"\r\n\"Oh,\" said the manager. \"Who?\"\r\n\"The person who sold you a thousand boxes of this candy,\" Harry said.',15),(358,10,'Your Need is Greater Than Mine','In many big cities there are people who cannot get work. Sometimes they do not want to work, but somethimes there isn\'t any work for them to do.\r\nSome of these people beg for money. Some of them sell boxes of matches or cheap pens, and some of them sell flowers.\r\nAndrew Chen never gave money to beggars. \"People should work for their money,\" he believed. He also believed there was work for everyone, which was not true.\r\nOne day when he was waiting for a bus, a beggar came up and asked him for money. The beggar was and old woman wearing very old and dirty clothes. She had no shoes and she was selling some sweet-smelling flowers.\r\n\"Give an old woman ten dollars, mister,\" she said to Andrew. \"I haven\'t had a meal for three days.\"\r\n\"I\'m not giving you ten dollars,\" Andrew said.\r\n\"What about five dollars, then, mister,\" the poor old woman said. \"That\'ll buy me a couple of pieces of bread.\"\r\n\"No,\" Andrew said.\r\n\"Then what about one dollar,\" the old woman said. \"I can buy an orange for one dollar.\"\r\n\"I haven\'t got one dollar,\" Andrew said. \"Now go away.\"\r\nThe old woman looked at him sadly, and then give him her flowers.\r\n\"Here, mister,\" she said. \"You have these. You need them more than I do.\"',15),(359,11,'A Very Important Person','Important people often like to show how important they are.\r\nThey usually have the largest cars. They live in the biggest houses. They wear the most expensive clothes. They eat in the best restaurants.\r\nMr. Mammoth, the president of Acme Inc., was an important man. Acme In. was important company, one of the biggest in the country.\r\nThousands of men and women worked for it.\r\nThe offices of Acme Inc. were in The Acme Building. This was one of the tallest building in the city. It had fifty floors.\r\nMr. Mammoth, the president, had his office on the top floor. One day a man came to see him. He walked up to Mr. Mammoth\'s secretary. She was, of course, the most beautiful secretary in the company.\r\n\"My name is John Watkins,\" he told her. \"I have come to see Mr. Mammoth. My appointment is at ten o\'clock.\"\r\nThe most beautiful secretary in the building looked at the clock on the wall. It was the largest clock in the company.\r\n\"It is ten o\'clock now,\" she said. \"You are on time for your appointment. However, I am afraid you cannot see Mr.Mammoth.\"\r\nJohn Watkins was surprised.\r\n\"Oh? Why is that?\" he asked.\r\n\"Mr. Mammoth is playing golf.\"\r\n\"Oh,\" John Watkins said. \"Then he won\'t be coming to his office today.\"\r\nThe most beautiful secretary in the company smiled at him.\r\n\"Mr. Mammoth\'s already here,\" she said. \"He has the largest office in the world.\"',15),(360,12,'Violin Lessons','\"Daddy, can I learn to play the violin?\" young Sarah asked her father. She was always asking for things and her father was not very pleased.\r\n\"You cost me a lot of money, Sarah,\" he said. \"First you wanted to learn horse riding, then dancing, then swimming. Now it\'s the violin.\"\r\n\"I\'ll play every day, Daddy,\" Sarah said. \"I\'ll try very hard.\"\r\n\"All right,\" her father said. \"This is what I\'ll do. I\'ll play for you to have lessons for six weeks. At the end of six weeks you must play something for me. If you play well, you can have more lessons. If you play badly, I will stop the lessons.\"\r\n\"O.K., Daddy,\" Sarah said. \"That is fair.\"\r\nHe soon found a good violin teacher and Sarah began her lessons. The teacher was very expensive, but her father kept his promise.\r\nThe six weeks passed quickly. The time came for Sarah to play for her father.\r\nShe went ot the living room and said, \"I\'m ready to play for you, Daddy,\"\r\n\"Fine, Sarah,\" her father said. \"Begin.\"\r\nShe bagan to play. She played very badly, She made a terrible noise.\r\nHer father had one of his friends with him, and the friend put his hands over his ears.\r\nWhen Sarah finished, her father said, \"Well done, Sarah. You can have more lessons.\"\r\nSarah ran happily out of the room. Her father\'s firend turned to him. \"You\'ve spent a lot money, but she still plays very badly,\" he said.\r\n\"Well, that\'s true,\" her father said. \"But since she started learning the violin I\'ve been able to buy five apartments in the building very cheaply. In another six weeks I\'ll own the whole building!\"',15),(361,13,'Not So Stupid','Two men were sitting together in an airplane. They were on a long journey.\r\nOne of the men was a teacher. The other was a farmer.\r\nThey sat without talking for a while, then the farmer said, \"Let\'s do something to pass the time.\"\r\n\"What do you want to do?\" the teacher asked.\r\n\"We can ask each other riddles,\" the farmer said. \"You start.\"\r\n\"Let\'s make the rules first,\" the teacher said. \"And let\'s make the game more interesting. Let\'s play it for money. If we don\'t know the answer to a riddle, we have to paly a dollar.\"\r\nThe farmer thought about this for a while, then he said, \"That\'s not fair. You are a teacher, an educated man. You know more things than I do. I am just a farmer.\"\r\n\"That\'s true,\" the teacher said. \"What do you think we should do?\" \"If you don\'t know the answer to a riddle you pay me $100. If I don\'t know the answer to a riddle, I\'ll pay you $50.\"\r\nThe teacher thought about this, then he said, \"O.K. That\'s fair. Whol\'ll go first?\"\r\n\"I will,\" the farmer said. \"Here is my riddle. What has three legs when it walks, but only two legs when it flies?\"\r\nThe teacher repeated the riddle, \"What has three legs when it walks, but only two legs when it flies? Mm, that\'s a good one. I\'m afraid I don\'t know the answer.\"\r\nHe gave the farmer $100, then said, \"Tell me the answer. What has three legs when it walks but only two legs when it flies?\"\r\n\"I dont\' know,\" the farmer said, and gave him $50.',15),(362,14,'No Elephants','Jill Jones got a new job in a different part of the city. She had to go to work every day bu train.\r\nThere was only one other person in the train with her. This was a well-dressed man reading a newspaper.\r\nSuddenly, about halfway through the journey, the man began tearing his newspaper in to hundreds of small pieces. Then he picked them up, opened the window and threw them all out.\r\nThis done, he sat down, closed his eyes, and slept for the rest of the journey.\r\nThe next day, Jill Jones got into the same train. The same well-dressed man was there, reading the newspaper.\r\nAs before, about halfway through the journey, then man began tearing his newspaper into hundreds of small pieces. Then he picked the pieces up, opened the window and threw them all out.\r\nThis done, he sat down, closed his eyes, and slept for the rest of the journey.\r\nThis happened every day for a week.\r\nAt last, on Friday, Jill Jones spoke to the man.\r\n\"Excuse me, sir,\" she said, \"I don\'t want to be rude, but I must ask you a question. When we are halfway through our journey, you tear your newspaper into hundreds of pieces and then throw them all out of the window. Please tell me, sir. Why do you do this?\"\r\nThe well-dressed man smiled. \"There\'s a simple reason,\" he said. \"I like to sleep for part of the journey, but I cannot sleep if the train is full of elephants. So I throw the pieces of paper out to the elephants. It stops them from coming into the train.\"\r\n\"But there aren\'t any elephants in the train,\" Jill Jones said.\r\n\"I know,\" the man said. \"It works well, doesn\'t it?\"',15),(363,15,'How Wars Begin','The Stevenson family was having dinner. The family ate without talking for several minutes, then Tom said,\r\n\"Daddy, do you know how wars begin?\"\r\nMr. Stevenson thought for a moment, then he said, \"Yes, I think so. I\'ll give you an example. We\'ll take two countries, Britain and America. If Britain fought with America ...\"\r\nMrs. Stevenson laughed. \"That\'s crazy,\" she said to her husband. \"Britain and America have been friends for over two hundred years. They\'ll never fight.\"\r\n\"Yes, I know that,\" Mr. Stevenson said. \"I was only using them as an example.\"\r\n\"But they\'re not a good example,\" Mrs. Stevenson said. \"France and Germany are a better example.\"\r\n\"Britain and America are the best example,\" Mr. Stevenson replied. \"They are friends now but they were enemies in the past. They fought a war!\"\r\n\"But that was a long time ago,\" Mrs. Stevenson said. \"You should use more modern examples.\"\r\n\"And you should let me answer my son\'s question,\" Mr. Stevenson said angrily.\r\n\"Not when you give him wrong answers,\" Mrs. Stevenson said.\r\n\"I am not giving him wrong answers!\" Mr. Stevenson shouted. \"I am giving him perfectly good answers.\"\r\n\"Don\'t shout at me!\" Mrs. Stevenson cried. \"I\'m not one of your stupid friends.\"\r\n\"My friends aren\'t stupid!\" Mr. Stevenson stood up and walked angrily out of the room.\r\n\"Now I\'ll answer your question,\" Mrs. Stevenson said to her son.\r\n\"It\'s all right, Mom,\" he said. \"You and Dad already have.\"',15),(364,1,'The Diet','Mrs. Tan worries about her weight.\r\n\"I\'m too fat,\" she told her friend. \"I need to lose a lot of weight, but I don\'t know how to do it.\"\r\n\"Go and see Dr. Wei,\" said her friend. \"He\'ll tell you how to lose weight.\" So Mrs. Tan Visit Dr. Wei and told him about her problem.\r\n\"It isn\'t difficult to lose weight,\" he told her. \"All you need to do is go on a diet. \"I\'ll give you one.\"\r\nHe began to write on a piece of paper.\r\n\"Eat more fruits and vegetables, Also eat a lot of lean lean meat and grains.\"\r\nWhen he was finished, he handed her the piece of paper.\r\n\"Here you are,\" he said, \"Eat all those things and you\'ll soon lose weight.\"\r\nA few weeks later, Mrs. Tan\'s friend called on her.\r\nShe was surprised to see that she was even fatter than before andthat she was eating a huge chocolate sandwich cake and ice cream.\r\n\"I thought you were on a diet,\" she said.\r\n\"Oh, I am,\" she replied, \"I\'ve already had all the food on my diet today. Now I am eating my dinner.\"',16),(365,2,'A Holiday from School','Tommy hated school and was always looking for excuses not to go.\r\nIf he sneezed, he asked his mother to write a note saying he had a cold.\r\nIf he had a headache, he asked his mother to take him to the doctor during school hours.\r\nHe spent more time at home than he did at school.\r\nOn the days that he did go to school, he looked for excuses to come home easily.\r\nOne day he came home from school in the middle of the morning.\r\nHis father was surprised.\r\n\"You\'re home early,\" he said. \"Is the school closed today?\"\r\n\"No, Dad,\" Tommy said, \"It\'s open. Icame home early.\"\r\n\"How did you do that?\" his father asked him. \"What did you say to the teacher?\"\r\n\"I told her that I had a new baby brother and that I had to come home and help you.\"\r\n\"But your mother has had twins,\" his father said, \"a boy and a girl. You\'ve got a baby brother and baby sister.\"\r\n\"Yes, I know, Dad,\" Tommy said. \"I\'m saving up my baby sister for next week.\"',16),(366,3,'Love Letters','Jenny Gordon was a very kind and beautiful woman and before she married, many men were in love with her.\r\nMany of them wrote to her, telling her how wonderful she was, how much they loved her and wanted to marry her.\r\nJenny kept all these letters. She tied them up with a red ribbon and put them away in an old box. She never looked at them as she was happily married, however, they were a part of her life and she did not want to throw them away.\r\nJenny had a daughter, Sue. Sue was six.\r\nOne day, Jenny had to leave Sue alone for half an hour.\r\n\"Now be a good girl,\" she said. \"Play quietly. If you need anything, go to the lady next door.\"\r\nWhen she retured home, she asked Sue, \"Have you been a good girl?\"\r\n\"Oh, yes, Mommy,\" Sue said.\r\n\"What did you do while I was out?\" Jenny asked her.\r\n\"I played mailman,\" Sue told her.\r\n\"How could you play mailman. darling?\" Jenny asked.\"You didn\'t have any letter.\"\r\n\"Oh, yes I did, Mommy,\" Sue said. \"I found some in an old box upstairs. They were tied up with a red ribon. I put one in every mailbox in the street. Wasn\'t I a good girl?\"',16),(367,4,'Quick Service','A man took a pair of shoes to a shoe repair shop and said to the shoemaker, \"I\'d like you to repair these shoes for me, please.\"\r\n\"Certainly, sir,\" the shoemaker said.\r\n\"When will they be ready?\" the man asked.\r\n\"I\'m a bit busy, but they\'ll probably be ready for you on Thursday,\" he said.\r\n\"That\'s fine,\" the man said, and left the shop.\r\nThe next morning, he received a letter, offering him a job in another country. Within 24 hours he was on an airplane to his new job.\r\nTwenty years passed and he returned to his hometown.\r\nHe remembered his shoes.\r\n\"They were a good pair of shoes,\" he thought, \"I wonder if the shoemaker is still there and still has them. I\'ll go and see.\"\r\nHe was pleased to see that the shoemaker was still in the same shop, although he was an old man by now.\r\n\"Good morning,\" he said to him, \"Twenty years ago, I brought in a pair of shoes to be repaired. Do you think you\'ve still got them?\"\r\n\"Name?\" the old shoemaker asked.\r\n\"Smith,\" the man said.\r\n\"I\'ll go and see. They may be out back.\"\r\nThe shoemaker went out to the back of his shop and a few minutes later returned, carrying the pair of shoes.\r\n\"Here we are,\" he said, \"one pair of brown shoes to be repaired. I am a bit busy now but they\'ll probably be ready on Thursday.\"',16),(368,5,'The Umbrella Man','One day Jack\'s wife was cleaning out a closet.\r\n\"Look at all these umbrellas,\" Jack\'s wife said to him. \"There are eight and they are all broken.\"\r\n\"I\'ll take them all to the umbrella shop and have them repair,\" Jack said. \"They are too good to throw away.\"\r\nJack took the eight umbrellas to the shop and left them there. \"They\'ll be ready tomorrow,\" the shopkeeper said.\r\nThat evening Jack went home from the office by bus, as usual. He sat next to an old woman. She had an umbrella on the floor near her.\r\nWhen the bus reached his stop, he picked up her umbrella and stood up.\r\n\"Hey!\" the woman said. \"That\'s my umbrella.\"\r\n\"I\'m so sorry,\" Jack said, giving it to her. \"I wasn\'t thinking. Please forgieve me.\"\r\nThe next day he collected the umbrella from the umbrella shop and got on the bus.\r\nAs he sat down, a voice behind him said, \"You have certainly had a successful day!\"\r\nHe turned around and saw the woman whose umbrella he had almost taken the day before.',16),(369,6,'Fishing Can Be Dangerous','Old Peter liked fishing.Whenever he had any free time he drove into the countryside, found a good place to fish, and spent a few hours fishing.\r\nThe problem was that most of the best places to fish were on private land, and Peter often had to pull his rod out of the water quickly and run off with it when the owner of the land came along.\r\nOne day he was sitting by a river that ran through a rich man\'s property when he fell asleep.\r\nHe was awakened by a voice saying, \"You\'ll never catch anything using that bait.\"\r\nPeter looked up and saw a man standing behind him\r\n\"What do you mean?\" Peter said.\"There\'s nothing wrong with this bait.I always use it.I\'ve caught thirty fish with it today already.\"\r\n\"How very interesting,\" the man said.\"Do you know who I am?\"\r\nPeter shook his head\r\n\"I\'m the owner of this land\"\r\nPeter thought very quickly\r\n\"Do you know who I am?\" he asked\r\nThe man shook his head.\r\n\"I\'m the biggest liar in the country,\" Peter told him.\r\nAnd with this he pulled his line out of the water and ran off as fast as he could.',16),(370,7,'The Earthquake','Johnny lived with his mother and father in a small town in the mountains.\r\nOne day there was an earthquake near the town. Many houses were damaged. Everyone thought that there would soon be another earthquake.\r\nThey were worried that the second earthquake would be worse than the first.\r\n\"We must send Johnny to a safe place,\" Johnny\'s mother said to her husband. \"Many of our friends are sending their children to relatives in other towns.\"\r\n\"We\'ll send him to my brother, Peter,\" Johnny\'s father said. \"He lives a long way away. Johnny will be safe with him.\"\r\nHe telephoned Johnny\'s Uncle Peter and asked him if he would let Johnny live with him.\r\n\"He\'s a good boy,\" he said. \"He won\'t give you any trouble.\"\r\n\"All right,\" Johnny\'s Uncle Peter said, \"but I\'m not used to children. I live a very quiet and peaceful life.\"\r\n\"You won\'t know Johnny\'s in the house,\" his father told him.\r\nSo Johnny, who was five, went to live with his uncle.\r\nTwo days later, his mother and father received a telegram from Peter.\r\nIt said: \"I am returning child. Please send earthquake.\"',16),(371,8,'A Family Secret','Arnold Wu was a proud man. \"I am sure my family is one of the oldest in the country,\" he often told people. \"It has a long history.\"\r\nOne day he went to see an expert in family history, Mrs. Li.\r\n\"I want you to find out everything about my family,\" he said. \"Where do we come from? Who was the first Wu? Were there any famous people in the family? Do I have any rich relatives?\"\r\n\"O.K.,\" Mrs. Li said, \"but it will cost you $2,000.\"\r\nArnold thought about this. Two thousand dollars was a lot of money.\r\nAt last he said, \"All right. But for $2,000 I want a complete history. I want full details.\"\r\nThe expert agreed. \"Come back in three months,\" she said.\r\nThree months later Arnold visited Mrs. Li again.\r\n\"Well,\" he said, \"have you found out everything about my family?\"\r\n\"Yes,\" she said. \"It is a very interesting family. However, my price is now $5,000.\"\r\n\"Five thousand dollars!\" Arnold shouted. \"But you told me the cost was only $2,000.\"\r\n\"I know. It was $2,000 to find out about your family,\" she said. \"It is another $3,000 to keep secret what I found out!\"',16),(372,9,'No Point','Two days after Simon\'s fifth birthday, he went to school for the first time.\r\nHis mother bought him new clothes, and a special bag to carry his pens and books in.\r\nThe school was a long way from his home, so Simon\'s mother took him to school in the morning, and left him at the school gate.\r\n\"Enjoy yourself, Simon,\" she said, \"and be good. The teacher will tell me if you\'re not.\"\r\nThen she left him and went back home. At half past three she went back to pick him up. She waited outside with many mothers. Soon he came out and ran up to her.\r\n\"Did you enjoy your first day at school?\" she asked him.\r\nHe shook his head.\r\n\"No,\" he said, \"and I\'m never going back there again.\"\r\nHis mother was very surprised.\r\n\"What\'s the matter?\" she asked him. \"Has someone been unkind to you?\"\r\n\"No,\" he replied.\r\n\"Did you miss me?\" his mother asked him. \"Is that why you don\'t want to go to school again?\"\r\n\"No,\" he replied.\r\n\"Then tell me the reason,\" his mother said.\r\n\"All right. I can\'t read. I can\'t write. I can\'t spell. I can\'t do math and the teacher won\'t let me talk. What\'s the point of going to school when I can\'t do anything there?\"',16),(373,10,'Long Life','A man was selling medicines at a fair. At first he sold bottles of a cure for colds for just a dollar a bottle.\r\nMany people wanted to buy it and the man\'s young assistant moved quickly through the crowd collecting money and handing out bottles of the cold cure.\r\nThen, when he had a big crowd, the nman held up a very small bottle.\r\n\"And now, ladies and gentlemen,\" he shouted, \"here is the medicine you have been waiting for. The cure for old age. Drink just on bottle of this and you will live forever.\"\r\n\"And, ladies and gentlemen,\" the man continued, \"I\'m not going to charge you a hundred dollars a bottle for this wonderful medicine. I\'m not going to charge you fifty dollars a bottle. I\'m not going to charge you twenty-five dollars a bottle. No, ladies and gentlemen, I\'m going to charge you just ten dollars a bottle. Think, my friends, for ten dollars you can live forever.\"\r\nMost of the people in the crowd did not believe this.\r\nOne person shouted, \"If it make you live forever, why don\'t you drink it?\"\r\nThen another person cried, \"Yes, you look as if you\'re at least sixty years old.\"\r\n\"Thank you, sir, thank you,\" the man replied, \"I\'m so glad you said that. My real age is three hundred and twenty-nine.\"\r\nthe crowd laughed at this but there were still a few people who wanted to believe the man. One of them spoke to the man\'s assistant as she passed by. \"Is that true,\" he asked, \"that he\'s three hundred and twenty-nine?\"\r\n\"Don\'t ask me,\" the assistant said, \"I\'ve only worked for him for a hundred and fifty years.\"',16),(374,11,'The Bank Robber','A bank was robbed by an armed robber.\r\nHe walked into the bank, went up to the bank teller, pointed a gun at her and said, \"Give me all the money or I\'ll shoot.\"\r\nThe bank teller was frightened and did as the robber asked.\r\nThe police later asked the bank teller if she could tell them anything about the robber.\r\n\"He wore a stocking over his face,\" the bank teller said. \"I\'m afraid I can\'t tell you what he looked like.\"\r\nA week later, the bank was robbed again.\r\n\"I\'m sure it was the same man,\" the bank teller said. \" didn\'t see his face, because he had a stocking over it again, but the voice was the same when he said, \'Give me all the money or I\'ll shoot.\'\"\r\nA week later, the bank was robbed for the third time.\r\n\"Was it the same man?\" the police asked the bank teller.\r\n\"Oh, yes, I\'m sure it was,\" the bank teller said. \"I didn\'t see his face because he wore a stocking over it again, but it was the same voice.\"\r\n\"Are you sure you didn\'t notice anything else about the man?\" the police aksed. \"A little detail, Anything that might help us find him.\"\r\nThe bank teller thought for a minute, then she said, \"There is one thing.\"\r\n\"And what is that?\" the police said hopefully.\r\n\"Every time he comes in and robs us,\" the teller said, \"he\'s better dressed than before.\"',16),(375,12,'The Big Baby','\"You\'ll have to take care of the baby today,\" a woman told her husband. \"I\'m not feeling well.\"\r\n\"Then you must stay in bed and rest, dear.\" her husband said. \"I\'ll be pleased to look after our baby.\"\r\n\"Thank you. I\'ll have a quiet day and I\'ll soon get better.\" his wife told him.\r\n\"Shall I do the shopping for you as well?\" her husband asked.\r\nShe was very pleased and said, \"That will help me very much. I\'ll give you a list of things to buy.\"\r\nShe wrote out the list and gave it to him.\r\n\"You can get all these things at the supermarket,\" she said.\r\n\"You can put the baby in the shopping cart, then you won\'t have to leave him outside.\"\r\nThe man took the baby to the supermarket and put him in the shopping cart. Then he pushed the shopping cart along the rows of things to buy and looked for those that were on his list.\r\nAt first all was well, but then the baby began to cry.\r\nThen he started to scream.\r\nAnd scream!\r\nAnd SCREAM!\r\n\"Keep calm, George,\" the man said. \"Don\'t get excited. Don\'t shout, George. Don\'t lose your temper, George.\"\r\nA woman in the supermarket heard him saying these things. She walked up to him.\r\n\"I think you are wonderful,\" she said. \"You are so patient with your little George.\"\r\n\"Madam,\" the man said, \"I\'m George. He\'s Edward.\"',16),(376,13,'In the Air','Matt and his wife lived in the country. Matt was very stingy and hated spending money. One day a fair came to the nearby town.\r\n\"Let\'s go to the fair, Matt,\" his wife said. \"We haven\'t been anywhere for a long time.\"\r\nMatt thought about this for a while. He knew he would have to spend money at the fair. At last he said, \"All right, but I\'m not going to spend much money. We\'ll look at things, but we don\'t buy anything.\"\r\nThey went to the fair and looked at all the things to buy. There were many things Matt\'s wife wanted to buy, but he would not let her spend any money.\r\nThen, in a nearby field, they saw a small airplane.\r\n\"Fun flights!\" the notice said, \"$10 for 10 minutes.\"\r\nMatt had never been in an airplane and he wanted to go on a fun flight. However, he didn\'t want to have to pay for his wife, as well.\r\n\"I\'ve only got $10,\" he told the pilot. \"Can my wife come with me for free?\" The pilot wasn\'t selling many tickets, so he said, \"I\'ll make a bargain with you. If your wife doesn\'t scream or shout, she can have a free flight.\"\r\nMatt agreed, and got into the small airplane with his wife.\r\nThe pilot took off and made his airplane do all kinds of things. At one moment it was flying upside down.\r\nWhen the plane landed, the pilot said, \"O.K. Your wife didn\'t make a sound. She can have her ride free.\"\r\n\"Thank you,\" Matt said. \"It wasn\'t easy for her, you know, especially when she fell out.\"',16),(377,14,'On Guard','Two unemployed men, Len and Ted, were sitting in a restaurant drinking tea.\r\nOutside, on the opposite side of road, there was a bank. A security guard was standing outside the bank.\r\nLen stood up. \"I must go,\" he said. \"I\'ll see you tomorrow.\"\r\n\"O.K.\" Ted said. \"I\'ll be here.\"\r\nLen walked out of the restaurant and crossed the road. Then he walked up to the security guard, said something to him and ran off as fast as he could.\r\nThe security guard was very angry and he ran after Len shouting at him.\r\n\"Come back here! How dare you insult me!\" he shouted, but Len kept on running.\r\nThe security guard could not catch him and he was soon out of sight.\r\nStill angry the security guard hurried back to his position.',16),(378,15,'The Cheater','Donald was not very good at math.\r\nHe could not understand the teacher\'s explanations.\r\nEven when the teacher explained something a second time, Donald still could not understand it.\r\n\"Never mind,\" Donald told himself. \"I\'m quite good at other subjects. I\'ll cheat in the math exam, then I won\'t be in trouble.\"\r\nI\'ll sit next to the boy who\'s best at math,\" he thought, \"and copy down his answers.\"\r\nThe day of the exam came, and Donald sat next to Brian Smith, who always was at the top of the class in math.\r\nDonald carefully copied Brian\'s answers on to his own exam paper.\r\nAt the end of the exam, the teacher collected the papers and graded them.\r\nThen she said, \"Well, boys and girls, I\'ve decided to give a prize to the student who got the highest grade. It\'s difficult for me to decide who to give the prize to, however, because two students Donald and Brian, got the same grade.\"\r\n\"Let them share it,\" one of the other students said.\r\n\"I\'ve thought about that,\" the teacher said, \"but I\'ve decided to give the prize to Brian.\"\r\nDonald was angry when he heard this.\r\nHe stood up and said, \"That\'s not fair. I got the same grade as Brian.\"\r\n\"That\'s true,\" the teacher said. \"However, Brian\'s answer to Question 18 was \'I don\'t know.\' Yours was \'Neither do I.\'\"',16),(379,1,'The Three Tortoises','Once upon a time, there were three tortoises who were friends.\r\nOne of them was a large tortoise, one was a medium-sized tortoise and the third was a small tortoise.\r\nOne day they went into a restaurant and ordered some cake.\r\nWhile they were waiting for the cake, they remembered that they hadn\'t brought any money.\r\n\"Hey, we forgot to bring money to pay for our cake, the big tortoise said.\r\n\"The little tortoise can go home and get it,\" the medium-sized tortoise said. \"He\'s the youngest, so he should be the one to go.\"\r\nThe little tortoise wasn\'t very pleased at this, but he knew he shouldn\'t argue with his elders, so he said, \"All right, I\'ll go. But you must promise not to eat my cake while I\'m away.\"\r\nThe largest tortoise and the medium-sized tortoise agreed, and the little tortoise set off for home to get some money.\r\nA few days later, the big tortoise said to the medium-sized tortoise, \"Let\'s eat the little tortoise\'s cake. I\'m hungry again.\"\r\n\"So am I,\" the medium-sized tortoise said, and reached for the cake.\r\nAs she did so, the little tortoise shouted from near the door of the restaurant, \"If you touch my cake, I won\'t go and get the money!\"',17),(380,2,'An Old Friend','Carol Evans hated to be wrong.\r\nIf she made a mistake, she could never admit it.\r\nOne day, she was walking along the street when she bumped into another woman.\r\nShe looked at the woman very carefully.\r\nThen she said, \"Kate Foster! Well, well, well, I haven\'t seen you for ten years.\"\r\nShe looked the woman up and down.\r\n\"But you\'ve changed, Kate,\" she went on. \"You used to be fat but now you\'re thin.\"\r\nShe smiled at her, \"But you look well and it\'s good to see you again.\"\r\nShe took the woman\'s hand and shook it.\r\n\"But, oh, you have changed,\" she said. \"I\'ve never known anyone change so much. You used to have thick hair but now it\'s very thin. You didn\'t use to wear glasses but now you\'re wearing really thick ones.\"\r\nShe smiled at the woman again.\r\n\"But you\'re still the same Kate Foster I used to have coffee with every week. We had some good times, didn\'t we, Kate?\"\r\n\"Excuse me, ma\'am,\" the woman said, \"but my name isn\'t Kate Foster.\"\r\nCarol thought for a minute, then she said, \"So you\'ve changed your name as well, haven\'t you?\"',17),(381,3,'Not Here','Kathy and Polly were friends but they liked playing tricks on each other.\r\nOne day Kathy met Polly in the street. She said, \"Hi, Polly. It\'s good to see you.\"\r\n\"How can you see me when I\'m not here?\" Polly asked.\r\n\"what do you mean, you\'re not here?\" Kathy asked. \"Of course you\'re here.\"\r\n\"No, I\'m not,\" Polly said, \"and I\'ll bet you ten dollars that I can prove I\'m not here.\"\r\n\"Alright,\" said Kathy. \"Ten dollars. Now prove you\'re not here.\"\r\n\"Easy,\" Polly said. \"Am I in Hong Kong?\"\r\n\"No,\" said Kathy.\r\n\"Am I in Paris?\"\r\n\"No,\" said Kathy.\r\n\"If I\'m not in Hong Kong and I\'m not in Paris,\" Polly said, \"then I must be somewhere else. Right?\"\r\n\"Right,\" said Kathy. \"You must be somewhere else.\"\r\n\"Exactly,\" said Polly. \"And if I\'m somewhere else I can\'t be here, can I? Ten dollars, please.\"\r\n\"That\'s very clever, Polly,\" Kathy said, \"but I can\'t give you ten dollars.\"\r\n\"Why not?\" asked Polly. \"We had a bet.\"\r\n\"Certainly we had a bet,\" Kathy said, \"but how can I give you ten dollars if you\'re not here?\"\r\nAnd with a laugh she walked away.',17),(382,4,'A Bad Doctor','A man walked into a doctor\'s examining room.\r\n\"Put out your tongue,\" the doctor said.\r\nThe man put out his tongue and the doctor looked at it quickly.\r\n\"O.K. You can put your tongue back now.\" the doctor said. \"it\'s clear what\'s wrong with you. You need more exercise.\"\r\n\"But, doctor,\" the man said. \"I don\'t think ...\"\r\n\"Don\'t tell me what you think, \" the doctor said. \"I am the doctor, not you. I know what you need. I see hundreds of people like you. None of them get any exercise. They sit in offices all day and in front of the television in the evening. What you need is to walk quickly for at least 20 minutes a day.\"\r\n\"Doctor, you don\'t understand,\" the patient said \"I ...\"\r\n\"I don\'t want to hear any excuses,\" the doctor said. \"You must find time for exercise. If you don\'t, you will get fat and have health problems when you are older.\"\r\n\"But I walk every day,\" the patient said.\r\n\"Oh, yes, and I know what kind of walking that is. You walk a few feet to the train station from your house, a few more feet from the station to your office, and a few more feet from your office to a restaurant for lunch and back. That\'s not real walking. I\'m talking about a walk in the park for twenty minutes every day.\"\r\n\"Will you listen to me, doctor!\" the patient shouted, getting angry with this doctor who thought he knew everything.\r\n\"I\'m a mailman,\" the patient went on, \"and I walk for seven hours every day. \"\r\nFor a moment the doctor was silent, then he said quietly, \"Put your tongue out again, will you?\"',17),(383,5,'Nothing to Complain About','One day Susan Li was walking along the street when she saw her friend Lisa Wu.\r\nShe had not seen her old friend for some time so she said, \"We\'ve got lots to talk about. Let\'s have some tea and cake in that cafe.\r\nShe pointed to a nearby cafe.\r\nLisa agreed, so the two friends went into the cafe.\r\nSusan ordered. \"we\'ll have two pieces of cake,\" she said, \"and a pot of tea.\r\nThe waitress wrote down their order and went away.\r\nShe soon returned with the cake and the pot of tea.\r\nSusan saw immediately that one piece of cake was a little bigger than the other.\r\nHowever, she was well-mannered so she picked up the plate and offered it to Lisa.\r\n\"Have a piece of cake, Lisa\" she said.\r\n\"Thank you,\" Lisa said. \"But after you\".\r\n\"No, no,\" Susan said. \"After you, please.\"\r\n\"Very well,\" Lisa said and she took the bigger of the two pieces of cake,\"\r\nSusan was angry. \"You\'ve taken the bigger of the two pieces of cake. She said. \"That was very rude.\"\r\n\"Not at all,\" Lisa replied, \"Tell me, if you had taken the cake before me, which cake would you have taken?\"\r\n\"The smaller one, of course,\" Susan said.\r\n\"Exactly. Well, you\'ve got the smaller one, so what are you complaining about?\"',17),(384,6,'A Good-Bye Gift','When Michael Ma died, his three best friends went to his funeral.\r\nThey stood for a moment, looking down into the grave of their friend.\r\n\"He was a good friend,\" the first person said. \"He was generous and kind. Let\'s give him some money to use in heaven.\"\r\nThe other two friends agreed. They thought this was a good idea.\r\nThe first friend took his wallet out of his pocket, opened it and took out a $100 bill. Then he threw it into the grave.\r\nThe second friend did not want the other two to think he was stingy, so he also took out his wallet.\r\n\"You\'re right,\" he said. \"He always helped his friends. He deserves to have everything he needs in his next life.\"\r\nAnd with these words, he also threw a hundred dollar bill into the grave.\r\nThe third man looked at the other two, and thought carefully for several minutes. He did not want them to think he was stingy, but he really did hate spending money.\r\nAt last, he bent down, took the two hundred dollar bills out of the grave and put them in his pocket.\r\nThen he took out his checkbook and wrote a check for three hundred dollars. He then threw the check into the grave.\r\n\"I haven\'t got any change,\" he said, \"but that check is for three hundred dollars, so I\'ve given the same as you.\"',17),(385,7,'Good Value','George was very stingy. He hated spending money.\r\nWhenever he had to buy something he always argued about the price and tried to bargain, even for the cheapest things.\r\nIf he wanted to buy a can of Coke, for example, and the shopkeeper asked for $2, George would say, \"Make it $1.90 and I\'ll buy it.\"\r\nSometimes the shopkeepers agreed to reduce their prices a little. \"What\'s ten cents?\" they asked themselves. \"If it make this man happy, then it won\'t hurt me very much.\"\r\nIn this way George saved a few cents here and a few cents there, and by the end of the year he had saved several hundred dollars.\r\nOne day he had a very bad toothache and had to go to the dentist. The dentist looked at the tooth and said, \"This tooth will have to come out. It\'s too damaged to save.\"\r\n\"How much do you charge to take out a tooth?\" George asked.\r\n\"Forty dollars,\" the dentist said.\r\n\"Forty dollars!\" George thought this was much too expensive.\r\n\"How long will it take you to pull out the tooth?\" he asked.\r\n\"About two minutes,\" the dentist said.\r\nGeorge could not believe what he was hearing. \"Forty dollars for two minutes\' work!\" he shouted. \"That\'s robbery.\"\r\nThe dentist smiled. \"You\'re right.\" She said. \"Thank you for telling me. I\'ll pull your tooth out very slowly. How about if I take half an hour?\"',17),(386,8,'Not Funny','John Smith and his friend Bill Jones were shipwrecked on a deserted island in the middle of the Pacific Ocean.\r\nThey had plenty of fish and fruit to eat, but nothing to read except a book full of jokes.\r\nEach of the jokes was numbered.\r\nAt first, to help pass the time, John and Bill read the jokes to one another, then they told them from memory. After a year they knew the jokes so well that they just said the number of the joke.\r\n\"Twenty,\" John would say, and Bill would roar with laughter.\r\nThen Bill might say,\" Seventy-five,\" and John would laugh.\r\nOne day, after they had been on the island for many years, another man was shipwrecked with them.\r\n\"How do you pass the time?\" he asked them.\r\n\"We tell each other jokes.\" Bill said, and handed him the joke book.\r\n\"Tell us a joke,\" John said. \"Just read out the number.\"\r\n\"O.K.,\" the man said. He looked through the book until he found a joke he thought was very funny. It was number eighty-three.\r\n\"I\'ve found a good joke,\" he said. \"Are you ready?\"\r\n\"Yes,\" Bill and John said.\r\n\"Right,\" the man said. \"Here it is. Eighty-three.\"\r\nJohn and Bill just looked at the man. Their faces did not move. They did not make a sound.\r\n\"Why didn\'t you laugh?\" the man asked.\r\n\"You didn\'t tell it very well,\" Bill said.',17),(387,9,'The Right Tools for the Job','When his young son was ill, Mr. Wei took him to a clinic.\r\nThey were the first patients of the day and did not have to wait long.\r\nThe nurse took the boy into the doctor\'s room while Mr. Wei waited outside.\r\nAfter a few minutes, the doctor came out of his room and spoke to the nurse.\r\n\"Have we got a screwdriver?\" he asked her.\r\nThe nurse looked in a drawer and found a screwdriver. She gave it to the doctor and he went back into his room.\r\nA few minutes later he came out again. \"I need a saw.\" He said to the nurse this time. Again the nurse looked in a drawer. She found a saw and gave it to the doctor. He went back into his room.\r\nA few minutes later the doctor came out of his room for the third time. \"I\'m going to need a hammer.\" He said. For the third time the nurse looked in the drawer. She found a hammer and gave it to the doctor. This time Mr. Wei could not keep quiet.\r\n\"Excuse me.\" He said \"but what is wrong with my son? And what are you doing to him?\"\r\n\"I haven\'t examined him yet.\" The doctor said. \"I\'m still trying to get my bag open.\"',17),(388,10,'Paid in Full','One day a bus stopped at a tourist spot, and all the passengers got out and went into a nearby restaurant.\r\nOne of them walked up to the manager and said, \"Good morning. I am Mr. Tom Wilkins. These people are all patients at the City Psychiatric Hospital.They are having their annual bus trip. They will all behave very well, but there is one small problem. They will want to pay for their food and drink with bottle caps. I\'ll be grateful if you will let them do this, then let me have the bill just before we leave.\"\r\nThe manager wanted to be helpful, so he said, \"That will be fine, sir. I hope you will all enjoy yourselves in my restaurant.\"\r\nThe patients all sat down. They ordered their food and drink, and behaved very well. No one knew they were patients at a psychiatric hospital.\r\nAt the end of the meal each of them paid his or her bill with bottle caps.\r\nThen they left the restaurant and got back on the bus.\r\nTom Wilkins went up to the manager. \"You\'ve been most kind,\" he said, \"and understanding. I\'ll pay the bill now.\"\r\nThe manager added up everything the patients had ordered, and gave the total to Tom Wilkins. It came to quite a lot of money.\r\n\"That\'s a fair price,\" Tom said. \"I\'m happy to pay that. Have you got change for six bottles?\"',17),(389,11,'The Wrong Question','One day when Jack was walking in the park, he saw a woman he knew sitting on a bench with a dog beside her. The dog was looking up at the woman.\r\nJack went up to the woman and said, \"Hello, Sue, how are you? May I sit and talk with you for a while?\"\r\n\"Of course, please sit down.\" Sue said.\r\nJack sat down next to Sue on the bench, and they talked quietly together. The dog still looked up at Sue, as if waiting for something to be fed.\r\n\"That\'s a nice dog,\" Jack said, looking at the animal.\r\n\"Yes, he\'s handsome. He\'s a bit of a mixture, but that\'s not a bad thing. He\'s strong and healthy.\"\r\n\"And hungry,\" Jack said. \"He hasn\'t taken his eyes off you. He thinks you\'ve got some food for him.\"\r\n\"That\'s true,\" Sue said, \"but I haven\'t.\"\r\nThe two friends laughed and then Jack said, \"Does your dog bite?\"\r\n\"No,\" Sue said. \"He\'s never bitten anyone. He\'s always gentle and good-tempered.\"\r\nHearing this, Jack decided to pet the dog. He put out his hand and touched the animal\'s head. Immediately it jumped up and bit him.\r\n\"Hey!\" Jack shouted. \"You said he didn\'t bite.\"\r\n\"No, I didn\'t,\" Sue answered. \"You asked me if my dog bit, and I said no. That\'s not my dog. My dog is at home.\"',17),(390,12,'Bananas Are Bad for You','Pearl and June were good friends and spent most of their time together.\r\nThey were both very old and they worried about their health. Most of the time they talked about nothing else.\r\nThey worried about their food. Was it clean? Would it give them pains in the stomach? They worried about the weather. Was it too cold and wet? Would it give them pains in their bones? They worried about pollution in the air. Would it give them pains in their chests and throats? They worried about being hurt in a car accident, killed in an airplane crash, getting sick, and so on. All they could think about was being ill or hurt.\r\nOne day they went on a train journey together. \"We\'ll need some food,\" Pearl said.\r\n\"We\'ll buy some bananas,\" June said. \"They are good to eat and always clean.\"\r\nAnd so they bought two bananas to eat on the train. It was not long before they were hungry. Pearl took out the bananas and gave one to June. Then she peeled the skin of her banana and took a large bite of it.\r\nAt that moment the train went into a tunnel. Everything went black. \"Don\'t eat your banana,\" Pearl shouted at June. \"Mine has made me go blind!\"',17),(391,13,'Big John','One day in the old days of the American west, a small man suddenly ran into a hotel. It was full of men, drinking and talking. The small man was very frightened.\r\n\"Big John\'s coming,\" he shouted. \"Run for your lives!\"\r\nImmediately every man put down his drink and ran out of the hotel. The bartender hid under the bar.\r\nEveryone had heard of Big John and was afraid of him. It was not long before the door of the hotel opened and a huge man walked in. He was taller and fatter than two men together and he had two guns on his hips. He had hands the size of shovels, a thick, black beard and evil-looking eyes.\r\nHe stood by the door and looked around the room, then slowly he walked towards the bar.\r\n\"Thump! Thump!\" went the sound of his feet on the floor. The bartender heard him coming and began to shake. The man reached the bar. He leaned over it and looked down at the shaking bartender. He took a deep breath. The bartender was sure his last hour had come.\r\nThen the man spoke in a deep, loud voice that made the whole room shake.\r\n\"You\'d better get out of here,\" he said. \"Big John\'s coming.\"',17),(392,14,'The Wrong Medicine','A farmer had a very valuable cow. He took very good care of this cow and one day when it was ill, he was very worried. He telephoned the vet.\r\n\"What\'s the problem?\" the vet asked him when he arrived.\r\n\"My cow\'s very sick,\" the farmer said. \"I don\'t know what\'s the matter with her. She\'s lying down and won\'t stand up. She won\'t eat, and she\'s making a strange noise.\"\r\nThe vet looked at the cow. \"She\'s certainly sick,\" he said, \"and she need to take some very strong medicine.\"\r\nHe took a bottle out of his case, and put two pills into his hand.\r\n\"Give her these,\" he said. \"They should make her better.\"\r\n\"How should I give them to her?\" the farmer asked.\r\nThe vet gave him a long tube. \"Put this tube in her mouth,\" he said, \"then put the pills in the tube and blow. That\'ll make her sallow them.\"\r\nThe vet went away. The next day he came to the farm again. The farmer was sitting outside his house looking very miserable.\r\n\"How\'s your cow?\" the vet asked.\r\n\"No change,\" the famer said, and I\'m feeling very strange myself.\"\r\n\"Oh?\" the vet said. \"Why?\"\r\n\"I did what you said,\" the farmer explained. \"I put the tube in the cows mouth and then put two pills down it.\r\n\"And?\" the vet asked.\r\n\"The cow blew first,\" the farmer said.',17),(393,15,'Something in the Ear','A woman woke up one morning with a bad earache. The pain was so bad that she went to see a doctor. She had to wait a long time in the doctor\'s waiting room because he was very busy. While she was waiting the pain got worse. Also a piece of string began to grow out of her ear. When the doctor saw her he was very surprised.\r\n\"There seems to be a piece of string coming out of your ear,\" he said. Carefully he began to pull the string. Inch by inch, he pulled the piece of string out of her ear. Then it would not come any further.\r\n\"There seems to be something at the end of the string,\" the doctor said. \"I\'ll have to pull harder.\"\r\nHe began to pull harder, but the pain was so great that the woman asked him to stop.\r\n\"I must take out whatever is in your ear,\" the doctor told her. \"I\'ll give you something to help you sleep while I take it out.\"\r\nThe doctor gave the woman sleeping gas, and soon she was in a deep sleep.\r\nHe called his nurse to help him, and together they pulled on the piece of string.\r\nSuddenly there was a sound, and out of the woman\'s ear came a large bunch of roses.\r\nThe doctor was very surprised. He had never seen anything like this before.\r\nWhen the woman woke up, he said, \"I pulled a large bunch of roses out of your ear. Do you know where they came from?\"\r\n\"Wasn\'t there a card with them?\" the woman asked him.',17),(394,1,'Counting Chickens','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(395,2,'A Housing Problem','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(396,3,'Dirty Hands','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(397,4,'The Guitar Player','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(398,5,'Schooldays','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(399,6,'Importance','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(400,7,'Nothing Unusual','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(401,8,'Free Tickets','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(402,9,'A Fishy Story','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(403,10,'Lasting a Lifetime','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(404,11,'Kid\'s Talk','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(405,12,'The Monster','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(406,13,'Directions','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(407,14,'Not Such a Simple Question','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(408,15,'Right Way - Wrong Way','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',18),(409,1,'True Love','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(410,2,'The Secret of Success','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(411,3,'Almost Sure','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(412,4,'The Twins','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(413,5,'The Bet','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(414,6,'The Cure','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(415,7,'Information Please','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(416,8,'The Price of Steak','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(417,9,'Catch of the Day','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(418,10,'A Short Holiday','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(419,11,'A Free Meal','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(420,12,'The Bird','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(421,13,'A Generous Gift','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(422,14,'Magic','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(423,15,'Helping Hands','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',19),(424,1,'A Fishy Story','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(425,2,'Dog for Sale','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(426,3,'Breaking the News','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(427,4,'A Mailman\'s Problem','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(428,5,'Accident','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(429,6,'More Uses Than One','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(430,7,'An Unexpected Hobby','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(431,8,'Three Wishes','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(432,9,'A Pain in the Neck','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(433,10,'A Safe Bet','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(434,11,'Flying the Flag','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(435,12,'Safe Hands','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(436,13,'A Voice from Heaven','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(437,14,'Boasting','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(438,15,'With God\'s Help','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',20),(439,1,'Good News','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(440,2,'Telling the Time','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(441,3,'The World\'s Greatest Wonders','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(442,4,'Friendly Advice','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(443,5,'The Witch','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(444,6,'The Size of It','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(445,7,'A Letter Home','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(446,8,'Revenge','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(447,9,'The Last laugh','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(448,10,'The Right Price','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(449,11,'Welcome Stranger','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(450,12,'The Sound of Speed','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(451,13,'The Cow','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(452,14,'Aunt Ethel','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(453,15,'Famous Last Words','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',21),(454,1,'The Longest Menu in the World','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(455,2,'Court Case','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(456,3,'My Friend the Penguin','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(457,4,'Man at War','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(458,5,'A Long Silence','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(459,6,'The Photographer','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(460,7,'Guilty or Not Guilty','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(461,8,'Late for Work','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(462,9,'Speak Your Weight','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(463,10,'Musical Lions','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(464,11,'The Witness','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(465,12,'An Important Friend','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(466,13,'The Shirt','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(467,14,'A Present for the Judge','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(468,15,'Performers','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',22),(469,1,'The New Principal','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(470,2,'A Bad Neighbor','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(471,3,'The Generous Policeman','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(472,4,'Which Way?','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(473,5,'The Most Famous Person in the World','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(474,6,'Dream Win','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(475,7,'A Careless Driver','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(476,8,'A Piece of Bread','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(477,9,'Too High a Price','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(478,10,'A New Kind of Chicken','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(479,11,'A Good Reason','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(480,12,'An Unexpected Answer','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(481,13,'The Entertainer','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(482,14,'Suspicious Behavior','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(483,15,'One Thing Missing','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',23),(484,1,'The Prize Winner','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(485,2,'The Wrong Date','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(486,3,'Sales Talk','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(487,4,'As Good as New','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(488,5,'You Can\'t Change the Future','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(489,6,'Sweet Music','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(490,7,'The Last Word','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(491,8,'A Foreign Language','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(492,9,'The Bet','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(493,10,'Not on the Menu','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(494,11,'Water! Water!','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(495,12,'The Movie-goer','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(496,13,'In Agreement','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(497,14,'Six Months to Live','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(498,15,'Check!','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(499,16,'Odd Man Out','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(500,17,'Child\'s Eye View','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(501,18,'The Right Place','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(502,19,'Not So Stupid','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(503,20,'A Little Knowledge','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',24),(504,1,'An Army of Animals','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(505,2,'An Unwelcome Interruption','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(506,3,'The Strongest Man in the World','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(507,4,'A Strange Pet','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(508,5,'Children of the Wolves','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(509,6,'The Wizard of Wall Street','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(510,7,'The Man Who Could Not Sleep','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(511,8,'The Neverending Building','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(512,9,'They\'re Playing Our Song','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(513,10,'S.O.S.','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(514,11,'If at First You don\'t Succeed','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(515,12,'The Wedding Guests','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(516,13,'UFO','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(517,14,'The Wrong Destination','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(518,15,'Peking Man','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(519,16,'Eggsplosion','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(520,17,'A Ghost Story','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(521,18,'Bad Luck','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(522,19,'Elementary','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(523,20,'A Load of Cement','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',25),(524,1,'The Thirsty Ant','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(525,2,'Hanaca\'s Hat','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(526,3,'The Husband Who Looked After the House','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(527,4,'King Solomon\'s Vase','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(528,5,'The Mark of Wisdom','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(529,6,'The Two Crows','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(530,7,'The Three Sheiks and the Queen of Arabia','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(531,8,'Pandora\'s Box','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(532,9,'The Great Issumboshi','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(533,10,'Belive It or Not','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(534,11,'Anziz and His Magic Flute','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(535,12,'Hurashima and the Greatest Gift of All','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(536,13,'The Bird of Happiness','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(537,14,'The Monkey and the Crocodile','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(538,15,'King Midas','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(539,16,'The Dragon and the Gypsy','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(540,17,'The Crystal Ball','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(541,18,'The Demon of Stone Mountain','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(542,19,'The Young Prince','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26),(543,20,'Apollo and the Shepherd','Thanks for visiting VickyStudio\'s typing practice center. But this chapter is still under construction. You may go back some chapters for practicing, or keep staying in precisely this chapter. We will provide you with some temporary text to practice. But the text after this chapter will totally be the same before the proper text is in place, or say, completed. The following text is from the official website of Chinadaily, May 24th, 2024.\r\nThe China Popular Music Association and the China Society for the Studies of Children Literature have jointly launched the Children\'s Band Battle, a prestigious national event unveiled in Beijing on Wednesday.\r\nThis eagerly anticipated competition will bring together talented children\'s bands from across the country, converging at the NCPA Taihu Stage Art Centre in Beijing from Aug 19 to 23 for a dynamic five-day summer camp filled with electrifying live performances and enriching masterclasses.\r\nThe participating children\'s bands will be categorized into groups based on age distinctions, spanning from 3 to 8 years old, 9 to 12 years old, and 13 to 17 years old, ensuring a fair and engaging competition tailored to each group\'s unique talent and capabilities.\r\nRenowned figures in the music industry, including veteran songwriters Jin Zhaojun, Jia Ding, and esteemed members of Chinese rock bands such as Zhao Mingyi, the iconic drummer of Black Panther, will form the esteemed art committee. These distinguished artists will serve as mentors to the young bands, offering guidance during rehearsals and conducting enlightening masterclasses to nurture their musical prowess.\r\nZhang Shurong, vice-president of the art committee, highlighted the significance of art education in modern schools, noting the increasing trend of children learning not only classical instruments like the piano and violin but also contemporary musical instruments. The event aims to provide a platform for children to showcase their talents, forge new friendships, and foster meaningful communication through the universal language of music.\r\nReflecting on his own musical journey, drummer Zhao expressed his enthusiasm for the upcoming summer camp, eager to impart his knowledge and experiences to the next generation of musicians. He emphasized the lasting influence of music on individuals\' lives, stating that while not all participants may pursue music professionally, they will undoubtedly carry their love for music throughout their lifetime, enriching their experiences and relationships along the way.',26);
/*!40000 ALTER TABLE `content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `section`
--
DROP TABLE IF EXISTS `section`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `section` (
`section_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`section` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`section_title` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`section_title_chs` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`volume_id` bigint unsigned DEFAULT NULL,
`num_chapters` int unsigned DEFAULT NULL,
`comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
PRIMARY KEY (`section_id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `section`
--
LOCK TABLES `section` WRITE;
/*!40000 ALTER TABLE `section` DISABLE KEYS */;
INSERT INTO `section` VALUES (1,'1',NULL,NULL,1,144,'新概念英语1册1单元'),(2,'1',NULL,NULL,2,24,'新概念英语2册1单元'),(3,'2',NULL,NULL,2,24,'新概念英语2册2单元'),(4,'3',NULL,NULL,2,24,'新概念英语2册3单元'),(5,'4',NULL,NULL,2,24,'新概念英语2册4单元'),(6,'1',NULL,NULL,3,20,'新概念英语3册1单元'),(7,'2',NULL,NULL,3,20,'新概念英语3册2单元'),(8,'3',NULL,NULL,3,20,'新概念英语3册3单元'),(9,'1',NULL,NULL,4,8,'新概念英语4册1单元'),(10,'2',NULL,NULL,4,8,'新概念英语4册2单元'),(11,'3',NULL,NULL,4,8,'新概念英语4册3单元'),(12,'4',NULL,NULL,4,8,'新概念英语4册4单元'),(13,'5',NULL,NULL,4,8,'新概念英语4册5单元'),(14,'6',NULL,NULL,4,8,'新概念英语4册6单元'),(15,'1',NULL,NULL,5,15,'妙语短篇A1'),(16,'1',NULL,NULL,6,15,'妙语短篇A2'),(17,'1',NULL,NULL,7,15,'妙语短篇A3'),(18,'1',NULL,NULL,8,15,'妙语短篇B1'),(19,'1',NULL,NULL,9,15,'妙语短篇B2'),(20,'1',NULL,NULL,10,15,'妙语短篇B3'),(21,'1',NULL,NULL,11,15,'妙语短篇C1'),(22,'1',NULL,NULL,12,15,'妙语短篇C2'),(23,'1',NULL,NULL,13,15,'妙语短篇C3'),(24,'1',NULL,NULL,14,20,'妙语短篇D1'),(25,'1',NULL,NULL,15,20,'妙语短篇D2'),(26,'1',NULL,NULL,16,20,'妙语短篇D3');
/*!40000 ALTER TABLE `section` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `volume`
--
DROP TABLE IF EXISTS `volume`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `volume` (
`volume_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`ISBN` char(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`volume` char(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`volume_title` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`volume_title_chs` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`author` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`book_id` int DEFAULT NULL,
`num_sections` int unsigned DEFAULT NULL,
`volume_style` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`volume_cover` char(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
PRIMARY KEY (`volume_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `volume`
--
LOCK TABLES `volume` WRITE;
/*!40000 ALTER TABLE `volume` DISABLE KEYS */;
INSERT INTO `volume` VALUES (1,'9787560013466','1','First Things First','英语初阶','L. G. Alexander,何其莘',1,1,'style=\"background-color:rgba(255,204,4,1);color:rgba(0,118,53,1);\"','nce-v1.png'),(2,'9787560013473','2','Practice and Progress','实践与进步','L. G. Alexander,何其莘',1,4,'style=\"background-color:rgba(254,112,6,1);color:rgba(40,99,145,1);\"','nce-v2.jpg'),(3,'9787560013480','3','Developing Skills','培养技能','L. G. Alexander,何其莘',1,3,'style=\"background-color:rgba(34,42,93,1);color:rgba(251,211,0,1);\"','nce-v3.jpg'),(4,'9787560013497','4','Fluency in English','流利英语','L. G. Alexander,何其莘',1,6,'style=\"background-color:rgba(0,127,68,1);color:rgba(254,91,1,1);\"','nce-v4.jpg'),(5,'9787544609975','A1',NULL,NULL,'Ken Methold',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-a1.jpg'),(6,'9787544609982','A2',NULL,NULL,'Ken Methold',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-a2.jpg'),(7,'9787544609999','A3',NULL,NULL,'Ken Methold,Heather Jones',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-a3.jpg'),(8,'9787544610001','B1',NULL,NULL,'Ken Methold',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-b1.jpg'),(9,'9787544610018','B2',NULL,NULL,'Ken Methold',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-b2.jpg'),(10,'9787544610025','B3',NULL,NULL,'Ken Methold,Heather Jones',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-b3.jpg'),(11,'9787544610032','C1',NULL,NULL,'Ken Methold',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-c1.jpg\r\n'),(12,'9787544610049','C2',NULL,NULL,'Ken Methold,Heather Jones',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-c2.jpg'),(13,'9787544610056','C3',NULL,NULL,'Ken Methold,Heather Jones',2,15,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-c3.jpg\r\n'),(14,'9787544610063','D1',NULL,NULL,'Ken Methold,Suzanne Hold',2,20,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-d1.jpg'),(15,'9787544610070','D2',NULL,NULL,'Ken Methold,Clare Vickyers',2,20,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-d2.jpg'),(16,'9787544610087','D3',NULL,NULL,'Ken Methold,Helen Jacobs',2,20,'style=\"background-color:rgba(50,184,184,1);color:rgba(41,38,117,1);\"','ssfc-d3.jpg');
/*!40000 ALTER TABLE `volume` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-05-14 3:59:41